You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ni...@apache.org on 2008/01/07 13:16:41 UTC

svn commit: r609581 - /struts/struts2/trunk/plugins/portlet/src/main/resources/struts-plugin.xml

Author: nilsga
Date: Mon Jan  7 04:16:39 2008
New Revision: 609581

URL: http://svn.apache.org/viewvc?rev=609581&view=rev
Log:
WW-2404 Changed the order of the interceptors

Modified:
    struts/struts2/trunk/plugins/portlet/src/main/resources/struts-plugin.xml

Modified: struts/struts2/trunk/plugins/portlet/src/main/resources/struts-plugin.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/portlet/src/main/resources/struts-plugin.xml?rev=609581&r1=609580&r2=609581&view=diff
==============================================================================
--- struts/struts2/trunk/plugins/portlet/src/main/resources/struts-plugin.xml (original)
+++ struts/struts2/trunk/plugins/portlet/src/main/resources/struts-plugin.xml Mon Jan  7 04:16:39 2008
@@ -50,15 +50,15 @@
 		<!-- Default stack for operating in portlet environment -->
         <interceptor-stack name="portletDefaultStack">
 			<interceptor-ref name="portletState"/>
-            <interceptor-ref name="defaultStack"/>
             <interceptor-ref name="portletAware"/>
+            <interceptor-ref name="defaultStack"/>
         </interceptor-stack>
         <!-- Extension of the default portlet stack which also includes the token interceptor --> 
 		<interceptor-stack name="portletDefaultStackWithToken">
 			<interceptor-ref name="portletState"/>
+			<interceptor-ref name="portletAware"/>
 			<interceptor-ref name="token"/>
 			<interceptor-ref name="defaultStack"/>
-			<interceptor-ref name="portletAware"/>
 		</interceptor-stack>
 		   
        </interceptors>