Skip to content

Commit 22e294c

Browse files
authored
Merge pull request #57 from nockhigan/patch-1
binary type validator does not work
2 parents 2dee45c + e90bc35 commit 22e294c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

models/validators/TypeValidator.cfc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,10 @@ component
170170
r = isXML( arguments.targetValue );
171171
break;
172172
}
173+
case "binary": {
174+
r = isValid( "binary", arguments.targetValue );
175+
break;
176+
}
173177
}
174178

175179
if ( !r ) {

0 commit comments

Comments
 (0)