Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions system/core/ruleParser/MetadataRuleParser.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ component accessors="true" extends="BaseRuleParser" implements="IRuleParser" {
//if the property name given isn't found skip over it instead of erroring our
if(!listFindNoCase(propertyNameList,propertyName)) continue;
var propertyConstraints = ruleContainerConstraints[propertyName];
for (propertyConstraintName in propertyConstraints){
for (var propertyConstraintName in propertyConstraints){
//if the constraint name isn't recognized skip over it instead of erroring our
if(isValidConstraintName(propertyConstraintName)){
var vr = new hyrule.system.core.rule.ValidationRule();
Expand All @@ -95,4 +95,4 @@ component accessors="true" extends="BaseRuleParser" implements="IRuleParser" {
}
}

}
}