You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by pa...@apache.org on 2020/01/25 07:41:22 UTC

[ofbiz-framework] branch release17.12 updated: Fixed: Same content uploaded twice, if refresh the page after uploading the content (OFBIZ-11171)

This is an automated email from the ASF dual-hosted git repository.

pawan pushed a commit to branch release17.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release17.12 by this push:
     new a06bf80  Fixed: Same content uploaded twice, if refresh the page after uploading the content (OFBIZ-11171)
a06bf80 is described below

commit a06bf80855a3fa033aa0d1c96e423532b6d5b0da
Author: Pawan Verma <pa...@hotwaxsystems.com>
AuthorDate: Sat Jan 25 13:09:27 2020 +0530

    Fixed: Same content uploaded twice, if refresh the page after uploading the content
    (OFBIZ-11171)
    
    Thanks, Humera Khan and Shubham Goswami for your contribution.
---
 applications/party/webapp/partymgr/WEB-INF/controller.xml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/applications/party/webapp/partymgr/WEB-INF/controller.xml b/applications/party/webapp/partymgr/WEB-INF/controller.xml
index c8bbd82..2bc8e7d 100644
--- a/applications/party/webapp/partymgr/WEB-INF/controller.xml
+++ b/applications/party/webapp/partymgr/WEB-INF/controller.xml
@@ -979,8 +979,12 @@ under the License.
     <request-map uri="uploadPartyContent">
         <security auth="true" https="true"/>
         <event type="service" invoke="uploadPartyContentFile"/>
-        <response name="success" type="view" value="viewprofile"/>
-        <response name="error" type="view" value="viewprofile"/>
+        <response name="success" type="request-redirect" value="viewprofile">
+            <redirect-parameter name="partyId"/>
+        </response>
+        <response name="error" type="request-redirect" value="viewprofile">
+            <redirect-parameter name="partyId"/>
+        </response>
     </request-map>
 
     <request-map uri="partyContentList">