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.gitThe 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 <
[hidden email]>
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">