Should we not preferably solve the origin of the issue ? Are there any side-effects coming from this change ? Else why a request-redirect was previously used ?

Jacques

From: <hans...@apache.org>
Author: hansbak
Date: Sun Feb 22 09:04:32 2009
New Revision: 746649

URL: http://svn.apache.org/viewvc?rev=746649&view=rev
Log:
after a request-redirect the request parameters do not seem to carry over? 
change to 'request'

Modified:
   ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml

Modified: ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml?rev=746649&r1=746648&r2=746649&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml Sun 
Feb 22 09:04:32 2009
@@ -357,7 +357,7 @@
    <request-map uri="updatePerson">
        <security https="true" auth="true"/>
        <event type="service" path="" invoke="updatePerson"/>
-        <response name="success" type="request-redirect" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
        <response name="error" type="view" value="EditPerson"/>
    </request-map>

@@ -371,7 +371,7 @@
    <request-map uri="updatePartyGroup">
        <security https="true" auth="true"/>
        <event type="service" path="" invoke="updatePartyGroup"/>
-        <response name="success" type="request-redirect" value="viewprofile"/>
+        <response name="success" type="request" value="viewprofile"/>
        <response name="error" type="view" value="EditPartyGroup"/>
    </request-map>





Reply via email to