Skip to content

Commit 89c1139

Browse files
committed
Fixed filename access for filemtime/stat
1 parent 40b487f commit 89c1139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/header.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ foreach($css_files as $filename) {
2626
$JS = [];
2727
if (isset($config["js_files"])) {
2828
foreach($config['js_files'] as $filename) {
29-
$path = dirname(__DIR__) . $filename;
29+
$path = dirname(__DIR__) . '/' . $filename;
3030
$JS[$filename] = @filemtime($path);
3131
}
3232
}

0 commit comments

Comments
 (0)