]> git.wh0rd.org - tt-rss.git/commitdiff
fixed wrong path for css files in function calculate_dep_timestamp
authorHeiko Adams <heiko.adams@gmail.com>
Mon, 20 May 2013 13:57:16 +0000 (15:57 +0200)
committerHeiko Adams <heiko.adams@gmail.com>
Mon, 20 May 2013 13:57:16 +0000 (15:57 +0200)
include/functions.php

index 328b00c8a7734a6da4df8b691fc51b5c2d972ed1..21bba8deec30efe102afa1a0bad0af80e051dbcc 100644 (file)
        }
 
        function calculate_dep_timestamp() {
-               $files = array_merge(glob("js/*.js"), glob("*.css"));
+               $files = array_merge(glob("js/*.js"), glob("css/*.css"));
 
                $max_ts = -1;