diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2014-03-16 19:04:54 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2014-03-16 19:04:54 +0000 |
commit | b81c3dc020112e09a2a1342b95aa55e47e9a6c90 (patch) | |
tree | 3a1a3869132a3251bff35b07e092e7d55a961917 | |
parent | 1359eacbdbff842b241a85ea274a00982fec9267 (diff) | |
parent | 259571aa7559630d429d0046aa56d1089a6eed17 (diff) | |
download | rpg-b81c3dc020112e09a2a1342b95aa55e47e9a6c90.tar.gz rpg-b81c3dc020112e09a2a1342b95aa55e47e9a6c90.tar.bz2 |
Merge pull request #617 from Werkov/master
Fixed cache dependency for template's style.ini
-rw-r--r-- | lib/exe/css.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php index cab7384b2..ab5c03f0e 100644 --- a/lib/exe/css.php +++ b/lib/exe/css.php @@ -56,7 +56,7 @@ function css_out(){ } // cache influencers - $tplinc = tpl_basedir($tpl); + $tplinc = tpl_incdir($tpl); $cache_files = getConfigFiles('main'); $cache_files[] = $tplinc.'style.ini'; $cache_files[] = $tplinc.'style.local.ini'; // @deprecated |