summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2015-02-01 13:59:41 +0100
committerMichael Hamann <michael@content-space.de>2015-02-01 13:59:41 +0100
commit090f83d33e04d9dfa5a75e6229b19bfab29b7b51 (patch)
treed0478902faeeb3baf2bb6c7769b4705b4b57fe07 /inc
parentbc17a0d9232585d451d0b84745d178f011fdf2fb (diff)
downloadrpg-090f83d33e04d9dfa5a75e6229b19bfab29b7b51.tar.gz
rpg-090f83d33e04d9dfa5a75e6229b19bfab29b7b51.tar.bz2
Fix farm config cascade for extendable user style and scripts #954
Diffstat (limited to 'inc')
-rw-r--r--inc/farm.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/inc/farm.php b/inc/farm.php
index cee61816c..87fcdade8 100644
--- a/inc/farm.php
+++ b/inc/farm.php
@@ -135,12 +135,12 @@ $config_cascade = array(
),
),
'userstyle' => array(
- 'screen' => DOKU_CONF.'userstyle.css',
- 'print' => DOKU_CONF.'userprint.css',
- 'feed' => DOKU_CONF.'userfeed.css',
- 'all' => DOKU_CONF.'userall.css',
+ 'screen' => array(DOKU_CONF . 'userstyle.css', DOKU_CONF . 'userstyle.less'),
+ 'print' => array(DOKU_CONF . 'userprint.css', DOKU_CONF . 'userprint.less'),
+ 'feed' => array(DOKU_CONF . 'userfeed.css', DOKU_CONF . 'userfeed.less'),
+ 'all' => array(DOKU_CONF . 'userall.css', DOKU_CONF . 'userall.less')
),
'userscript' => array(
- 'default' => DOKU_CONF.'userscript.js'
+ 'default' => array(DOKU_CONF . 'userscript.js')
),
);