]> git.mxchange.org Git - jfinancials-war.git/commitdiff
fixed ids and used h:outputText
authorRoland Häder <roland@mxchange.org>
Wed, 1 Jun 2016 08:56:11 +0000 (10:56 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 1 Jun 2016 18:55:35 +0000 (20:55 +0200)
web/WEB-INF/templates/generic/message_box.tpl

index 1bfa9469394524e89e5472e27e4c6549008f3474..9dddabfd5931c3e706cdf708f5bfc0383104a21c 100644 (file)
@@ -8,18 +8,18 @@
 
        <div class="message_box">
                <div class="message_header">
-                       #{msg.MESSAGE_BOX_TITLE}
+                       <h:outputText value="#{msg.MESSAGE_BOX_TITLE}" />
                </div>
 
-               <ui:fragment id="output_message" rendered="#{not empty message}">
+               <ui:fragment rendered="#{not empty message}">
                        <div class="okay para">
-                               #{message}
+                               <h:outputText value="#{message}" />
                        </div>
                </ui:fragment>
 
-               <ui:fragment id="output_message" rendered="#{empty message}">
+               <ui:fragment rendered="#{empty message}">
                        <div class="errors para">
-                               #{msg.MESSAGE_BOX_PARAMETER_MESSAGE_EMPTY}
+                               <h:outputText value="#{msg.MESSAGE_BOX_PARAMETER_MESSAGE_EMPTY}" />
                        </div>
                </ui:fragment>
        </div>