What version of the product are you using? On what operating system?
1.5.3
The forgottenpassword-responses.jsp opens <div id="wrapper"> too late. The
statement must be moved before the header-body.jsp include, from line 47 to
line 44, this will fix the issue.
The code must change from:
<jsp:include page="header-body.jsp">
<jsp:param name="pwm.PageName" value="Title_RecoverPassword"/>
</jsp:include>
<div id="wrapper">
to:
<div id="wrapper">
<jsp:include page="header-body.jsp">
<jsp:param name="pwm.PageName" value="Title_RecoverPassword"/>
</jsp:include>
Original issue reported on code.google.com by andrea.d...@gmail.com on 10 May 2011 at 2:58
Original issue reported on code.google.com by
andrea.d...@gmail.com
on 10 May 2011 at 2:58