We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd7fbb1 commit 9a2a895Copy full SHA for 9a2a895
modules/cbvalidation/models/ValidationManager.cfc
@@ -150,9 +150,7 @@ component accessors="true" serialize="false" implements="IValidationManager" sin
150
for( var key in arguments.rules ){
151
// if message validators, just ignore
152
if( reFindNoCase( "Message$", key ) ){ continue; }
153
- // if not in list, ignore
154
- if( !listFindNoCase( variables.validValidators, key ) ){ continue; }
155
-
+
156
// had to use nasty evaluate until adobe cf get's their act together on invoke.
157
getValidator( validatorType=key, validationData=arguments.rules[ key ] )
158
.validate(
0 commit comments