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
This commit is contained in:
Ariel Backenroth
2007-02-05 21:10:11 +00:00
parent 1cc053a0cb
commit 86edc3cc44

View File

@@ -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)
{