Author: jleroux Date: Fri Dec 5 20:47:53 2014 New Revision: 1643425 URL: http://svn.apache.org/r1643425 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/release12.04/applications/party/webapp/partymgr/js/PartyProfileContent.js Modified: ofbiz/branches/release12.04/applications/party/webapp/partymgr/js/PartyProfileContent.js URL: http://svn.apache.org/viewvc/ofbiz/branches/release12.04/applications/party/webapp/partymgr/js/PartyProfileContent.js?rev=1643425&r1=1643424&r2=1643425&view=diff ============================================================================== --- ofbiz/branches/release12.04/applications/party/webapp/partymgr/js/PartyProfileContent.js (original) +++ ofbiz/branches/release12.04/applications/party/webapp/partymgr/js/PartyProfileContent.js Fri Dec 5 20:47:53 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_);

