Author: jleroux Date: Fri Dec 5 20:47:39 2014 New Revision: 1643424 URL: http://svn.apache.org/r1643424 Log: "Applied fix from trunk for revision: 1643423 " Backported by hand ------------------------------------------------------------------------ r1643423 | jleroux | 2014-12-05 21:41:38 +0100 (ven. 05 déc. 2014) | 2 lignes
A patch from Deepak for "Party Content Upload Ajax Is Broken" https://issues.apache.org/jira/browse/OFBIZ-5891, thanks to Adrian's report ------------------------------------------------------------------------ Modified: ofbiz/branches/release13.07/applications/party/webapp/partymgr/js/PartyProfileContent.js Modified: ofbiz/branches/release13.07/applications/party/webapp/partymgr/js/PartyProfileContent.js URL: http://svn.apache.org/viewvc/ofbiz/branches/release13.07/applications/party/webapp/partymgr/js/PartyProfileContent.js?rev=1643424&r1=1643423&r2=1643424&view=diff ============================================================================== --- ofbiz/branches/release13.07/applications/party/webapp/partymgr/js/PartyProfileContent.js (original) +++ ofbiz/branches/release13.07/applications/party/webapp/partymgr/js/PartyProfileContent.js Fri Dec 5 20:47:39 2014 @@ -94,6 +94,7 @@ function getUploadProgressStatus(event){ var timerId = timerId; jQuery.ajax({ url: 'getFileUploadProgressStatus', + dataType: 'json', success: function(data) { if (data._ERROR_MESSAGE_LIST_ != undefined) { jQuery('#content-messages').html(data._ERROR_MESSAGE_LIST_);

