Author: channa
Date: Mon Jan 28 01:37:31 2008
New Revision: 13043

Log:

Preventing the self registration page being displayed once signed in. (Required 
after https redirection fix).

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

Modified: trunk/mashup/java/modules/www/register_self.jsp
==============================================================================
--- trunk/mashup/java/modules/www/register_self.jsp     (original)
+++ trunk/mashup/java/modules/www/register_self.jsp     Mon Jan 28 01:37:31 2008
@@ -52,6 +52,10 @@
     } else {
         bounceback = URLDecoder.decode(bounceback, "UTF-8");
     }
+
+    if (RegistryUtils.isLoggedIn(registry)) {
+        response.sendRedirect(bounceback);
+    }    
 %>
 <jsp:useBean id="registrationHandler" 
class="org.wso2.mashup.webapp.identity.RegistrationBean"
              scope="request">

_______________________________________________
Mashup-dev mailing list
[email protected]
http://www.wso2.org/cgi-bin/mailman/listinfo/mashup-dev

Reply via email to