You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2002/10/31 02:30:44 UTC

DO NOT REPLY [Bug 14110] New: - isELIgnored attribute overridden by included page

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14110>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14110

isELIgnored attribute overridden by included page

           Summary: isELIgnored attribute overridden by included page
           Product: Tomcat 5
           Version: Unknown
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Critical
          Priority: Other
         Component: Jasper2
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: prasad.subramanian@sun.com


Lets say there are two pages with isELIgnored attribute
A.jsp has isELIgnored="false"
B.jsp has isELIgnored="true"

If B.jsp is included via an action  in A.jsp , then the setting for isELIgnored
in A.jsp is "true".
i.e. Any EL in template text is not evaluated.

Test case :
==============
<!-- A.jsp -->
<%@page isELIgnored="false" %>
This has ELIgnored as false .

<jsp:include page="B.jsp" />

${param.user}

===============

<!-- B.jsp -->
This has EL Ingnored as true
<%@page isELIgnored="true" %>


======================

====================

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>