summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHeiko Adams <[email protected]>2013-05-20 15:57:16 +0200
committerHeiko Adams <[email protected]>2013-05-20 15:57:16 +0200
commit9717d5de9d39dc5230e325fefa1035281890efeb (patch)
tree7a3b22cc84b53c75101955cadd115083902824dd /include
parent6938c03658b69a214d9df95c0c4a3c9d4f6e236f (diff)
fixed wrong path for css files in function calculate_dep_timestamp
Diffstat (limited to 'include')
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index 328b00c8a..21bba8dee 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -4169,7 +4169,7 @@
}
function calculate_dep_timestamp() {
- $files = array_merge(glob("js/*.js"), glob("*.css"));
+ $files = array_merge(glob("js/*.js"), glob("css/*.css"));
$max_ts = -1;