diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-04-24 02:24:23 -0700 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-04-24 02:24:23 -0700 |
commit | b1c9b296e809f1a1ebc1283013138f4f5cfc0141 (patch) | |
tree | 2af5ca4eb352893b5eef7b19448531c5b5b6a183 | |
parent | a7b4469b2e683a6c5ddeac83ff61c84ce3ffa941 (diff) | |
parent | f1a63254fbaaf3c82f7f921ca7a9f8e68b122212 (diff) | |
download | nextcloud-server-b1c9b296e809f1a1ebc1283013138f4f5cfc0141.tar.gz nextcloud-server-b1c9b296e809f1a1ebc1283013138f4f5cfc0141.zip |
Merge pull request #3089 from guruz/fix_ugly_config_writeability_error
Fix ugly error style on install
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index a32ed460907..e3b6a58bb2d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -467,11 +467,11 @@ class OC { stream_wrapper_register('close', 'OC\Files\Stream\Close'); stream_wrapper_register('oc', 'OC\Files\Stream\OC'); + self::initTemplateEngine(); self::checkConfig(); self::checkInstalled(); self::checkSSL(); self::initSession(); - self::initTemplateEngine(); $errors = OC_Util::checkServer(); if (count($errors) > 0) { |