Skip to content
Snippets Groups Projects
Unverified Commit dec4b263 authored by Roeland Jago Douma's avatar Roeland Jago Douma
Browse files

Fix subdir install style


* We need to pass the serverroot so that it can include the right files.

Signed-off-by: default avatarRoeland Jago Douma <roeland@famdouma.nl>
parent 6347d97c
No related branches found
No related tags found
No related merge requests found
......@@ -166,9 +166,9 @@ class TemplateLayout extends \OC_Template {
$cssFiles = self::findStylesheetFiles(\OC_Util::$styles);
} else {
$cssFiles = array(
[\OC::$SERVERROOT, '', 'core/css/global.css'],
[\OC::$SERVERROOT, '', 'core/css/fonts.css'],
[\OC::$SERVERROOT, '', 'core/css/installation.css']
[\OC::$SERVERROOT, \OC::$WEBROOT, 'core/css/global.css'],
[\OC::$SERVERROOT, \OC::$WEBROOT, 'core/css/fonts.css'],
[\OC::$SERVERROOT, \OC::$WEBROOT, 'core/css/installation.css']
);
}
$this->assign('cssfiles', array());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment