Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix wrong path /user/user.js check
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
main.php
|
@@ -177,7 +177,7 @@ function _mnmlblog_renderBoxes($arr) |
|
|
} |
|
|
|
|
|
//load userdefined js? |
|
|
if (tpl_getConf("mnmlblog_loaduserjs") && file_exists(DOKU_TPL."user/user.js")){ |
|
|
if (tpl_getConf("mnmlblog_loaduserjs") && file_exists(DOKU_TPLINC."user/user.js")){ |
|
|
echo "<script type=\"text/javascript\" charset=\"utf-8\" src=\"".DOKU_TPL."user/user.js\"></script>\n"; |
|
|
} |
|
|
?> |
|
|