PHP Assert->isTrue passes invalid false value to JS
Brought to you by:
zenon48
When using $Assert->isTrue and the checked parameter
is false, the resulting javascript Assert.isTrue does not
have a valid first argument. (It has no characters.)
This throws a JS error.
For example:
$Assert->isTrue( false, "comment" );
produces:
Assert.isTrue(,"comment");
This throws a JS error.
Any help would be appreciated. Send response to
jchearn@medicalnetsystems.com.
Thanks.