[gatein-commits] gatein SVN: r2679 - portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Apr 16 08:51:07 EDT 2010


Author: thomas.heute at jboss.com
Date: 2010-04-16 08:51:06 -0400 (Fri, 16 Apr 2010)
New Revision: 2679

Modified:
   portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java
Log:
JBEPP-309: Captcha verification after validation of existing username or e-mail

Modified: portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java
===================================================================
--- portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java	2010-04-16 12:44:34 UTC (rev 2678)
+++ portal/branches/EPP_5_0_Branch/portlet/exoadmin/src/main/java/org/exoplatform/account/webui/component/UIRegisterForm.java	2010-04-16 12:51:06 UTC (rev 2679)
@@ -94,9 +94,6 @@
       {
          // Invalidate the captcha image
          PortalRequestContext prContext = Util.getPortalRequestContext();
-         HttpServletRequest request = prContext.getRequest();
-         HttpSession session = request.getSession();
-         session.removeAttribute(Captcha.NAME);
  
          UIRegisterForm registerForm = event.getSource();
          OrganizationService orgService = registerForm.getApplicationComponent(OrganizationService.class);
@@ -109,6 +106,9 @@
             //TODO: Send email and add Account Activating feature
             UIApplication uiApp = context.getUIApplication();
             uiApp.addMessage(new ApplicationMessage("UIRegisterForm.registerWithSuccess.message", null));
+            HttpServletRequest request = prContext.getRequest();
+            HttpSession session = request.getSession();
+            session.removeAttribute(Captcha.NAME);
          }
       }
    }



More information about the gatein-commits mailing list