xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:c="http://xmlns.jcp.org/jsp/jstl/core">
+ <h:outputText value="#{msg.ERROR_USER_INSTANCE_NOT_SET}" rendered="#{not empty loginController.}"
<c:choose>
<c:when test="#{user == null}">
<h:outputText class="notice" value="#{msg.ERROR_USER_INSTANCE_NOT_SET}" />
</c:when>
- <c:when test="profileController.isProfileLinkVisible(user)}">
+ <c:when test="#{profileController.isProfileLinkVisible(user)}">
<h:link id="userProfileLink" outcome="user_profile" title="#{msg.LINK_USER_PROFILE_TITLE}">
<h:outputText id="userName" value="#{user.userName}" />
<f:param name="userId" value="#{user.userId}" />