- used more h:outputText instead of plainly adding text into the HTML component
- ids on ui:fragment are no good idea ...
Signed-off-by: Roland Häder <roland@mxchange.org>
<div class="message_box">
<div class="message_header">
- #{msg.MESSAGE_BOX_TITLE}
+ <h:outputText value="#{msg.MESSAGE_BOX_TITLE}" />
</div>
<ui:fragment rendered="#{not empty message}">
</ui:fragment>
</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>
</li>
</ui:fragment>
- <li class="footer_copyright">Copyright (c) 2016 Galdora e.K.</li>
+ <li class="footer_copyright">Copyright (c) 2016, 2017 Roland Häder</li>
</ul>
</footer>