]> git.mxchange.org Git - addressbook-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sat, 29 Jul 2017 21:47:34 +0000 (23:47 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 29 Jul 2017 21:48:35 +0000 (23:48 +0200)
- &nbsp; seems to longer work with newer Majarra (2.3.2) and it was a bad idea
  anyway, as you can have simple space characters in surrounding h:outputText's
  values
- fixed EL backing bean method call

Signed-off-by: Roland Häder <roland@mxchange.org>
web/guest/user/user_register.xhtml

index 599384f54714be3fee2657867f164fb61318205a..f4f92255eb9f4268378ecafd03634b91ef662336 100644 (file)
                <ui:fragment rendered="#{not featureController.isFeatureEnabled('user_registration_in_index') and featureController.isFeatureEnabled('user_registration')}">
                        <ui:fragment rendered="#{featureController.isFeatureEnabled('user_login_require_user_name')}">
                                <h:panelGroup styleClass="para" layout="block">
-                                       <h:outputText value="#{msg.GUEST_ALREADY_USER_CONTINUE_LOGIN_1}" />
-                                       <h:outputText value="&nbsp;" />
+                                       <h:outputText value="#{msg.GUEST_ALREADY_USER_CONTINUE_LOGIN_1} " />
                                        <h:link outcome="user_login" value="#{msg.CLICK_HERE}" />
-                                       <h:outputText value="&nbsp;" />
-                                       <h:outputText value="#{msg.GUEST_ALREADY_USER_CONTINUE_LOGIN_2}" />
+                                       <h:outputText value=" #{msg.GUEST_ALREADY_USER_CONTINUE_LOGIN_2}" />
                                </h:panelGroup>
                        </ui:fragment>