From: Heiko Adams Date: Mon, 20 May 2013 13:57:16 +0000 (+0200) Subject: fixed wrong path for css files in function calculate_dep_timestamp X-Git-Tag: 1.8~73^2^2 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=9717d5de9d39dc5230e325fefa1035281890efeb fixed wrong path for css files in function calculate_dep_timestamp --- diff --git a/include/functions.php b/include/functions.php index 328b00c8..21bba8de 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;