diff options
author | Gerrit Uitslag <klapinklapin@gmail.com> | 2013-10-14 15:55:16 +0200 |
---|---|---|
committer | Gerrit Uitslag <klapinklapin@gmail.com> | 2013-10-14 15:55:16 +0200 |
commit | 8265594d98708c1c993489099402d9ee27d2a289 (patch) | |
tree | 007fccf84b516aa9cd5ee4b5e875e8b719a864a8 /lib/plugins/acl/script.js | |
parent | 850f3dda33f85c3279ca47b77b1a34add823cac0 (diff) | |
download | dokuwiki-8265594d98708c1c993489099402d9ee27d2a289.tar.gz dokuwiki-8265594d98708c1c993489099402d9ee27d2a289.zip |
move ajax.php to action.php. Fixes FS#2233
Diffstat (limited to 'lib/plugins/acl/script.js')
-rw-r--r-- | lib/plugins/acl/script.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/plugins/acl/script.js b/lib/plugins/acl/script.js index 0abb80d67..58598b1e0 100644 --- a/lib/plugins/acl/script.js +++ b/lib/plugins/acl/script.js @@ -25,9 +25,10 @@ var dw_acl = { var $frm = jQuery('#acl__detail form'); jQuery.post( - DOKU_BASE + 'lib/plugins/acl/ajax.php', + DOKU_BASE + 'lib/exe/ajax.php', jQuery.extend(dw_acl.parseatt($clicky.parent().find('a')[0].search), - {ajax: 'tree', + {call: 'plugin_acl', + ajax: 'tree', current_ns: $frm.find('input[name=ns]').val(), current_id: $frm.find('input[name=id]').val()}), show_sublist, @@ -64,8 +65,8 @@ var dw_acl = { .attr('role', 'alert') .html('<img src="'+DOKU_BASE+'lib/images/throbber.gif" alt="..." />') .load( - DOKU_BASE + 'lib/plugins/acl/ajax.php', - jQuery('#acl__detail form').serialize() + '&ajax=info' + DOKU_BASE + 'lib/exe/ajax.php', + jQuery('#acl__detail form').serialize() + '&call=plugin_acl&ajax=info' ); return false; }, |