diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-02-27 11:36:05 +0100 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-02-27 11:36:05 +0100 |
commit | a1afc2e34f4652d791b78e7f541712301cd48c9d (patch) | |
tree | 51c8aa5c1d75c781043002a27bb9210c16ee8319 /lib/base.php | |
parent | 18b7a2bf2139245897fa4d6633d2e115ba72d927 (diff) | |
download | nextcloud-server-a1afc2e34f4652d791b78e7f541712301cd48c9d.tar.gz nextcloud-server-a1afc2e34f4652d791b78e7f541712301cd48c9d.zip |
only add style.css to initsession
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index 8654f9906fd..b46a97af640 100644 --- a/lib/base.php +++ b/lib/base.php @@ -326,6 +326,7 @@ class OC { OC_Log::ERROR); header('HTTP/1.1 500 Internal Server Error'); + OC_Util::addStyle("styles"); $error = 'Session could not be initialized. Please contact your '; $error .= 'system administrator'; @@ -459,8 +460,8 @@ class OC { self::checkConfig(); self::checkInstalled(); self::checkSSL(); - self::initTemplateEngine(); self::initSession(); + self::initTemplateEngine(); $errors = OC_Util::checkServer(); if (count($errors) > 0) { |