[gatein-commits] gatein SVN: r1783 - portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Feb 19 09:47:05 EST 2010


Author: mwringe
Date: 2010-02-19 09:47:04 -0500 (Fri, 19 Feb 2010)
New Revision: 1783

Modified:
   portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java
Log:
GTNPORTAL-698: Remove the NavigationalState from the form part of an invocation. This will prevent a situation where the navigational property of the url will contain a copy of itself with each invocation.

Modified: portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java
===================================================================
--- portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java	2010-02-19 12:35:46 UTC (rev 1782)
+++ portal/trunk/webui/portal/src/main/java/org/exoplatform/portal/webui/application/UIPortlet.java	2010-02-19 14:47:04 UTC (rev 1783)
@@ -646,7 +646,7 @@
       HashMap<String, String[]> allParams = new HashMap<String, String[]>();
       allParams.putAll(servletRequest.getParameterMap());
       allParams.putAll(this.getPublicParameters());
-      //allParams.remove(ExoPortletInvocationContext.NAVIGATIONAL_STATE_PARAM_NAME);
+      allParams.remove(ExoPortletInvocationContext.NAVIGATIONAL_STATE_PARAM_NAME);
       if (type.equals(ActionInvocation.class))
       {
          ActionInvocation actionInvocation = new ActionInvocation(pic);



More information about the gatein-commits mailing list