I am doing a basic JSP core's <c:if> statement in a magnolia page such as:


[code]
<%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>

<c:if test="${!empty param.passedAuthentication && 
param.passedAuthentication=='authenticated'}">
        <div class="form intro bis">
                You are authenticated.<br>
                passedAuthentication is equal to: 
${param.passedAuthentication}<br>
        </div>
</c:if>

<c:if test="${empty param.passedAuthentication || 
param.passedAuthentication!='authenticated'}">
        <div class="form intro bis">
                We could not authenticate you.<br>
                passedAuthentication is equal to:  ${param.passedAuthentication}
        </div>
</c:if>
[/code]

This is NOT working when I put it under Magnolia's pages. 

However when I put the same code in another web-app it DOES work.

Anybody has an idea why this is happening and how to fix this?

Thanks in advance

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=6a231767-ab46-481d-b503-dd4fa688e93f


----------------------------------------------------------------
For list details see
http://www.magnolia-cms.com/community/mailing-lists.html
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------

Reply via email to