aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib/plugins/acl/script.js
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2024-09-08 18:15:53 +0200
committerAndreas Gohr <andi@splitbrain.org>2024-09-08 18:15:53 +0200
commite44b94a4bd0679ff22e14add34b60590fe7077d3 (patch)
treef850096e4c7d5645ecd0bf5b33a9f6ef18607113 /lib/plugins/acl/script.js
parent944e9ba7254387adb60f253b0d8796f2276096b1 (diff)
downloaddokuwiki-e44b94a4bd0679ff22e14add34b60590fe7077d3.tar.gz
dokuwiki-e44b94a4bd0679ff22e14add34b60590fe7077d3.zip
Revert "use a dispatcher to access static image files"
This reverts commit 944e9ba7254387adb60f253b0d8796f2276096b1. It was accidentally pused to master before review. A PR with a revert for the revert will be pushed shortly.
Diffstat (limited to 'lib/plugins/acl/script.js')
-rw-r--r--lib/plugins/acl/script.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/acl/script.js b/lib/plugins/acl/script.js
index 818b33000..95621a255 100644
--- a/lib/plugins/acl/script.js
+++ b/lib/plugins/acl/script.js
@@ -38,7 +38,7 @@ var dw_acl = {
toggle_display: function ($clicky, opening) {
$clicky.attr('src',
- DOKU_BASE + 'lib/exe/image.php/' +
+ DOKU_BASE + 'lib/images/' +
(opening ? 'minus' : 'plus') + '.gif');
}});
$tree.delegate('a', 'click', dw_acl.treehandler);
@@ -63,7 +63,7 @@ var dw_acl = {
loadinfo: function () {
jQuery('#acl__info')
.attr('role', 'alert')
- .html('<img src="'+DOKU_BASE+'lib/exe/image.php/throbber.gif" alt="..." />')
+ .html('<img src="'+DOKU_BASE+'lib/images/throbber.gif" alt="..." />')
.load(
DOKU_BASE + 'lib/exe/ajax.php',
jQuery('#acl__detail form').serialize() + '&call=plugin_acl&ajax=info'