SpacyNG / pwm

Automatically exported from code.google.com/p/pwm
0 stars 0 forks source link

forgottenpassword-responses.jsp minor error #61

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago

Original comment by jrivard on 17 May 2011 at 3:00