diff options
author | Michal Koutný <xm.koutny@gmail.com> | 2014-03-16 10:20:45 +0100 |
---|---|---|
committer | Michal Koutný <xm.koutny@gmail.com> | 2014-03-16 10:21:18 +0100 |
commit | 259571aa7559630d429d0046aa56d1089a6eed17 (patch) | |
tree | 3a1a3869132a3251bff35b07e092e7d55a961917 /lib/exe | |
parent | 1359eacbdbff842b241a85ea274a00982fec9267 (diff) | |
download | rpg-259571aa7559630d429d0046aa56d1089a6eed17.tar.gz rpg-259571aa7559630d429d0046aa56d1089a6eed17.tar.bz2 |
Fixed cache dependency for template's style.ini
Web path was used instead of filesystem one.
Diffstat (limited to 'lib/exe')
-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 |