https://issues.apache.org/bugzilla/show_bug.cgi?id=45937

           Summary: Function ':not' not found
           Product: Tomcat 6
           Version: 6.0.18
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: regression
          Priority: P2
         Component: Servlet & JSP API
        AssignedTo: dev@tomcat.apache.org
        ReportedBy: [EMAIL PROTECTED]


The following sample code works in 6.0.16 but not 6.0.18.

<c:set var="a" value="false"/>
<c:set var="b" value="false"/>
<c:set var="c" value="false"/>

<c:out value="${not((not a) && (not b) && (not c))}"/>

Using a bang for the first not works.

<c:out value="${!((not a) && (not b) && (not c))}"/>

>From looking at the JSP spec, the "not" and "!" are interchangeable.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

Reply via email to