Skip to content

Commit 0515009

Browse files
coryasilvalstaples
authored andcommitted
CF11 Breaks due to syntax error (danvega#18)
Missing a comma in ```` throw( type="ValidationMessage", message="There is no message defined for type '#lcase(type)#'" ); ````
1 parent 2dc35c7 commit 0515009

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system/core/result/ValidationMessageProvider.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ component accessors="true" {
4646

4747
// if you are here we couldn't find a message
4848
throw(
49-
type="ValidationMessage"
49+
type="ValidationMessage",
5050
message="There is no message defined for type '#lcase(type)#'"
5151
);
5252

@@ -119,4 +119,4 @@ component accessors="true" {
119119
return loc.returnValue;
120120
}
121121

122-
}
122+
}

0 commit comments

Comments
 (0)