[mashup-dev] svn commit r12402 - trunk/mashup/java/modules/www

svn at wso2.org svn at wso2.org
Thu Jan 17 02:46:35 PST 2008


Author: tyrell
Date: Thu Jan 17 02:46:30 2008
New Revision: 12402

Log:

Fixing the issue related to the initial login after setup leading to a memory leak.

Modified:
   trunk/mashup/java/modules/www/error.jsp

Modified: trunk/mashup/java/modules/www/error.jsp
==============================================================================
--- trunk/mashup/java/modules/www/error.jsp	(original)
+++ trunk/mashup/java/modules/www/error.jsp	Thu Jan 17 02:46:30 2008
@@ -52,10 +52,9 @@
 <%@ page import="java.util.List" %>
 <%@ page import="java.util.Map" %>
 
-<!--Required to keep a user logged in if 'Remember Me' option is selected-->
-<%@ include file="validate_login.jsp" %>
+<%
+    Registry registry = RegistryUtils.getRegistry(request);
 
-<%                       
     String bounceback = request.getParameter("bounceback");
 
     if (bounceback == null) {
@@ -88,7 +87,7 @@
 
             <tr>
                 <td valign="top">
-                   <%--<div><%= exception.printStackTrace() %></div>--%>
+                    <%--<div><%= exception.printStackTrace() %></div>--%>
                 </td>
             </tr>
 



More information about the Mashup-dev mailing list