Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2016-01-30 15:18:19 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2016-01-30 15:18:19 +0300
commit5a75ad50acb288d1c58840d4824a3087577dcfc5 (patch)
tree93af331c6d47b90d203a57b78f1b338f1bc35672 /templates
parent92e7ac59e743ca1aa91454cbadbbb92dfa576d14 (diff)
fix getSystemConfig error on oc7
fixes #1201
Diffstat (limited to 'templates')
-rw-r--r--templates/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.php b/templates/index.php
index cbf384d13..110588d61 100644
--- a/templates/index.php
+++ b/templates/index.php
@@ -3,7 +3,7 @@
// TODO: remove DEBUG constant check once minimum oc
// core version >= 8.2, see https://github.com/owncloud/core/pull/18510
$debug = (defined('DEBUG') && DEBUG)
- || \OC::$server->getSystemConfig()->getValue('debug', false);
+ || \OC::$server->getConfig()->getSystemValue('debug', false);
style('mail','mail');
style('mail','mobile');