diff options
author | Michael Klier <chi@chimeric.de> | 2007-09-06 14:55:03 +0200 |
---|---|---|
committer | Michael Klier <chi@chimeric.de> | 2007-09-06 14:55:03 +0200 |
commit | 125b6d114151111839a019403a6fd5b65ae97f69 (patch) | |
tree | 5d987339b2a97bc79a84b55fecae0882aa034a82 | |
parent | 1b2a85e896db1404d2d5fa709f4c86d6c58fc3f4 (diff) | |
download | rpg-125b6d114151111839a019403a6fd5b65ae97f69.tar.gz rpg-125b6d114151111839a019403a6fd5b65ae97f69.tar.bz2 |
respect DOKU_BASE in CSS cache file name
darcs-hash:20070906125503-23886-5b5d7f1fb90eaa25e0ce08469a541cb2a760de1b.gz
-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 02425a990..59a2a63ea 100644 --- a/lib/exe/css.php +++ b/lib/exe/css.php @@ -42,7 +42,7 @@ function css_out(){ } // The generated script depends on some dynamic options - $cache = getCacheName('styles'.$conf['template'].$style,'.css'); + $cache = getCacheName('styles'.DOKU_BASE.$conf['template'].$style,'.css'); // load template styles $tplstyles = array(); |