This file seems to use the wrong method of String->Boolean conversion,
resuting in an always false result.
- Could someone review and submit this, if oppropriate? I don't have access.

This diff is against jakarta-tomcat-3.2-b7

share\org\apache\jasper\runtime\JspRuntimeLibrary.java

326c326
<                   tmpval[i] = Boolean.getBoolean (values[i]);
---
>                       tmpval[i] = ( Boolean.valueOf(values[i])
).booleanValue();                       


Gareth Morgan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to