summaryrefslogtreecommitdiff
path: root/lib/exe/css.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2013-08-03 22:16:08 +0100
committerAnika Henke <anika@selfthinker.org>2013-08-03 22:16:08 +0100
commit8c5aad7bcd74959cceb191697de486a5f6e98fd7 (patch)
tree33379909bc94319c6f349da8a9699ebe8091c9e0 /lib/exe/css.php
parent568ffd7ef769ecacdf91ac7bdf01dbcedaf8643a (diff)
downloadrpg-8c5aad7bcd74959cceb191697de486a5f6e98fd7.tar.gz
rpg-8c5aad7bcd74959cceb191697de486a5f6e98fd7.tar.bz2
fixed conf style.ini not working due to wrong incbase path
Diffstat (limited to 'lib/exe/css.php')
-rw-r--r--lib/exe/css.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php
index aa82ba9a2..48304b2b6 100644
--- a/lib/exe/css.php
+++ b/lib/exe/css.php
@@ -297,9 +297,9 @@ function css_styleini($tpl) {
}
// load configs's style.ini
- $incbase = dirname($ini).'/';
$webbase = DOKU_BASE;
- $ini = DOKU_CONF."/tpl/$tpl/style.ini";
+ $ini = DOKU_CONF."tpl/$tpl/style.ini";
+ $incbase = dirname($ini).'/';
if(file_exists($ini)){
$data = parse_ini_file($ini, true);