Hello!
Question appears during porting application from JSF 1.2 to JSF 2.0.3 (Mojarra). I have following code:
<h:outputFormat value="#{m.t_if_you_forget_password}" escape="false">
<f:param value="<a href=\"/restore_password.jsf\">" />
<f:param value="</a>" />
</h:outputFormat>
and got error:
Error Traced[line: 22] The value of attribute "value" associated with an element type "null" must not contain the '<' character.
How to fix it? Why JSF (facelets?) reject it? What's wrong with < and > in f:param value?
BTW, if it can help: I'm use GlassFish 3.0.1
Thanks in advance!