diff options
-rw-r--r-- | lib/exe/js.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/exe/js.php b/lib/exe/js.php index b11dfa6ce..f7bd574ed 100644 --- a/lib/exe/js.php +++ b/lib/exe/js.php @@ -97,9 +97,9 @@ function js_out(){ // load files foreach($files as $file){ - echo "\n\n/* XXXXXXXXXX begin of $file XXXXXXXXXX */\n\n"; + echo "\n\n/* XXXXXXXXXX begin of ".str_replace(DOKU_INC, '', $file) ." XXXXXXXXXX */\n\n"; js_load($file); - echo "\n\n/* XXXXXXXXXX end of $file XXXXXXXXXX */\n\n"; + echo "\n\n/* XXXXXXXXXX end of " . str_replace(DOKU_INC, '', $file) . " XXXXXXXXXX */\n\n"; } |