]> git.mxchange.org Git - jjobs-war.git/commitdiff
it needs to be h:outputFormat
authorRoland Häder <roland@mxchange.org>
Thu, 11 Aug 2016 12:31:33 +0000 (14:31 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 19 Aug 2016 20:56:21 +0000 (22:56 +0200)
web/admin/user/admin_user_lock.xhtml

index 482df3db756daf2cd68b850e70f317157bf9f8a7..17e9783659497d1b5e6a5eacbb18af64dc83fa9e 100644 (file)
@@ -21,7 +21,7 @@
                </ui:define>
 
                <ui:define name="content">
-                       <h:outputText styleClass="errors" value="#{msg.ERROR_USER_ID_NOT_FOUND}" rendered="#{empty beanHelper.user}" />
+                       <h:outputFormat styleClass="errors" value="#{msg.ERROR_USER_ID_NOT_FOUND}" rendered="#{empty beanHelper.user}" />
 
                        <h:form id="form_admin_user_unlock" rendered="#{not empty beanHelper.user and beanHelper.user.userAccountStatus == 'CONFIRMED'}">
                                <div class="table_medium">
@@ -38,7 +38,7 @@
                                                </div>
 
                                                <div>
-                                                       <h:outputText id="contactGender" value="#{msg[beanHelper.user.userContact.contactGender.messageKey]}" />
+                                                       <h:outputFormat id="contactGender" value="#{msg[beanHelper.user.userContact.contactGender.messageKey]}" />
                                                </div>
                                        </div>
 
@@ -48,7 +48,7 @@
                                                </div>
 
                                                <div>
-                                                       <h:outputText id="contactFirstName" value="#{beanHelper.user.userContact.contactFirstName}" />
+                                                       <h:outputFormat id="contactFirstName" value="#{beanHelper.user.userContact.contactFirstName}" />
                                                </div>
                                        </div>
 
@@ -58,7 +58,7 @@
                                                </div>
 
                                                <div>
-                                                       <h:outputText id="contactFamilyName" value="#{beanHelper.user.userContact.contactFamilyName}" />
+                                                       <h:outputFormat id="contactFamilyName" value="#{beanHelper.user.userContact.contactFamilyName}" />
                                                </div>
                                        </div>
 
                                </div>
                        </h:form>
 
-                       <h:outputText styleClass="errors" value="#{msg.ERROR_ADMIN_CANNOT_LOCK_USER_ACCOUNT_UNCONFIRMED}" rendered="#{beanHelper.user.userAccountStatus == 'UNCONFIRMED'}">
+                       <h:outputFormat styleClass="errors" value="#{msg.ERROR_ADMIN_CANNOT_LOCK_USER_ACCOUNT_UNCONFIRMED}" rendered="#{beanHelper.user.userAccountStatus == 'UNCONFIRMED'}">
                                <f:param value="#{beanHelper.user.userName}" />
                                <f:param value="#{beanHelper.user.userId}" />
-                       </h:outputText>
+                       </h:outputFormat>
 
-                       <h:outputText styleClass="errors" value="#{msg.ERROR_ADMIN_CANNOT_LOCK_USER_ACCOUNT_LOCKED}" rendered="#{beanHelper.user.userAccountStatus == 'LOCKED'}">
+                       <h:outputFormat styleClass="errors" value="#{msg.ERROR_ADMIN_CANNOT_LOCK_USER_ACCOUNT_LOCKED}" rendered="#{beanHelper.user.userAccountStatus == 'LOCKED'}">
                                <f:param value="#{beanHelper.user.userName}" />
                                <f:param value="#{beanHelper.user.userId}" />
-                       </h:outputText>
+                       </h:outputFormat>
                </ui:define>
        </ui:composition>
 </html>