Nadia Kunkov wrote the following on 12/2/2004 10:24 AM:

<c:when test="${fRoles['manager'] != null}">

You don't want to do this. Comparisons to null won't work. You want to use "empty." Change it to


<c:when test="${!empty fRoles['manager']}">

!empty should evaluate both null and empty. (At least I 'think' that's right:)

--
Rick

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



Reply via email to