diff options
author | rvelices <rv-github@modusoptimus.com> | 2009-12-18 21:08:21 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2009-12-18 21:08:21 +0000 |
commit | 8b66788392652515532a89e0dd7e3af594272cb4 (patch) | |
tree | 2d93c632523b9d0dfe8c536747dd2fe6adfef6be /template/yoga/picture.tpl | |
parent | 2a9b358dc8ebe8f1a077c88e7e7e49813c34a829 (diff) |
web method images.setPrivacyLevel (ws_images_setPrivacyLevel) is POST only
git-svn-id: http://piwigo.org/svn/branches/2.0@4512 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/picture.tpl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/template/yoga/picture.tpl b/template/yoga/picture.tpl index 26450a21c..5b720c85e 100644 --- a/template/yoga/picture.tpl +++ b/template/yoga/picture.tpl @@ -215,6 +215,7 @@ var y = new PwgWS(rootUrl); y.callService( "pwg.images.setPrivacyLevel", {image_id: id, level:level} , { + method: "POST", onFailure: function(num, text) { selectElement.disabled = false; alert(num + " " + text); }, onSuccess: function(result) { selectElement.disabled = false; } } |