Author: markt
Date: Thu Jun  4 14:37:23 2009
New Revision: 781755

URL: http://svn.apache.org/viewvc?rev=781755&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=46509
Use correct link on error page in JSP security example
Patch provided by Michael Moody

Modified:
    tomcat/container/tc5.5.x/webapps/docs/changelog.xml
    
tomcat/servletapi/servlet2.4-jsp2.0-tc5.x/jsr152/examples/security/protected/error.jsp

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?rev=781755&r1=781754&r2=781755&view=diff
==============================================================================
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Thu Jun  4 14:37:23 2009
@@ -187,6 +187,10 @@
         <bug>47235</bug>: Remove use of autoReconnect from MySQL examples.
         (mark)
       </fix>
+      <fix>
+        <bug>46509</bug>: Use correct link on error page in JSP security
+        example. Patch provided by Michael Moody. (markt)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Coyote" >

Modified: 
tomcat/servletapi/servlet2.4-jsp2.0-tc5.x/jsr152/examples/security/protected/error.jsp
URL: 
http://svn.apache.org/viewvc/tomcat/servletapi/servlet2.4-jsp2.0-tc5.x/jsr152/examples/security/protected/error.jsp?rev=781755&r1=781754&r2=781755&view=diff
==============================================================================
--- 
tomcat/servletapi/servlet2.4-jsp2.0-tc5.x/jsr152/examples/security/protected/error.jsp
 (original)
+++ 
tomcat/servletapi/servlet2.4-jsp2.0-tc5.x/jsr152/examples/security/protected/error.jsp
 Thu Jun  4 14:37:23 2009
@@ -20,6 +20,6 @@
 </head>
 <body bgcolor="white">
 Invalid username and/or password, please try
-<a href='<%= response.encodeURL("login.jsp") %>'>again</a>.
+<a href='<%= response.encodeURL("index.jsp") %>'>again</a>.
 </body>
 </html>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to