diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2016-11-24 17:20:35 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-01-06 09:42:14 +0100 |
commit | bd5bcd2d8d32f2f7422ecc47caddda69a92d525e (patch) | |
tree | f1d3ed02d6131b335e08cebaaa76dfe9ed2b58a3 /lib/private/TemplateLayout.php | |
parent | 763814f057cce0221d298aa045eaee20fa067a51 (diff) | |
download | nextcloud-server-bd5bcd2d8d32f2f7422ecc47caddda69a92d525e.tar.gz nextcloud-server-bd5bcd2d8d32f2f7422ecc47caddda69a92d525e.zip |
Installation css & template edit
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'lib/private/TemplateLayout.php')
-rw-r--r-- | lib/private/TemplateLayout.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/private/TemplateLayout.php b/lib/private/TemplateLayout.php index 8c8f9cfc33b..8ba5bc561f0 100644 --- a/lib/private/TemplateLayout.php +++ b/lib/private/TemplateLayout.php @@ -164,7 +164,11 @@ class TemplateLayout extends \OC_Template { if(\OC::$server->getSystemConfig()->getValue('installed', false)) { $cssFiles = self::findStylesheetFiles(\OC_Util::$styles); } else { - $cssFiles = array(array(\OC::$SERVERROOT, '', 'core/css/installation.css')); + $cssFiles = array( + [\OC::$SERVERROOT, '', 'core/css/global.css'], + [\OC::$SERVERROOT, '', 'core/css/fonts.css'], + [\OC::$SERVERROOT, '', 'core/css/installation.css'] + ); } $this->assign('cssfiles', array()); $this->assign('printcssfiles', []); |