From 8ab39194f1671f7c0e6bd78052ec27a09497114a Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Fri, 28 Mar 2014 14:25:16 +0100 Subject: [PATCH] Unknown attributes should be a config error. Refs #5883 --- lib/config/configtype.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/configtype.cpp b/lib/config/configtype.cpp index a8713eff8..3245fceb9 100644 --- a/lib/config/configtype.cpp +++ b/lib/config/configtype.cpp @@ -180,7 +180,7 @@ void ConfigType::ValidateDictionary(const Dictionary::Ptr& dictionary, } if (overallResult == ValidationUnknownField) - ConfigCompilerContext::GetInstance()->AddMessage(false, "Unknown attribute: " + LocationToString(locations)); + ConfigCompilerContext::GetInstance()->AddMessage(true, "Unknown attribute: " + LocationToString(locations)); else if (overallResult == ValidationInvalidType) { String message = "Invalid value for attribute: " + LocationToString(locations);