From 86edc3cc44e0e5c9854f21e240d5a284abaa6556 Mon Sep 17 00:00:00 2001 From: Ariel Backenroth Date: Mon, 5 Feb 2007 21:10:11 +0000 Subject: [PATCH] an embarassingly simple fix to WCM-296. needed to tell dojo to use posts rather than gets when making ajax requests. for some reason i assumed it was always doing a post... git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5043 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- source/web/scripts/ajax/xforms.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/web/scripts/ajax/xforms.js b/source/web/scripts/ajax/xforms.js index 61d06031fd..5b621ed0df 100644 --- a/source/web/scripts/ajax/xforms.js +++ b/source/web/scripts/ajax/xforms.js @@ -3713,7 +3713,7 @@ AjaxHelper.createRequest = function(target, serverMethod, methodArgs, load, erro "text/xml"); result.target = target; result.content = methodArgs; - + result.method = "POST"; result.load = load; dojo.event.connect(result, "load", function(type, data, evt) {