summaryrefslogtreecommitdiffstats
path: root/lib/private/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/config.php')
-rw-r--r--lib/private/config.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/private/config.php b/lib/private/config.php
index 20ff02c1abf..3ad800a00be 100644
--- a/lib/private/config.php
+++ b/lib/private/config.php
@@ -47,8 +47,6 @@ class Config {
protected $configFilePath;
/** @var string */
protected $configFileName;
- /** @var bool */
- protected $debugMode;
/**
* @param string $configDir Path to the config dir, needs to end with '/'
@@ -59,7 +57,6 @@ class Config {
$this->configFilePath = $this->configDir.$fileName;
$this->configFileName = $fileName;
$this->readData();
- $this->debugMode = (defined('DEBUG') && DEBUG);
}
/**
@@ -225,9 +222,6 @@ class Config {
private function writeData() {
// Create a php file ...
$content = "<?php\n";
- if ($this->debugMode) {
- $content .= "define('DEBUG',true);\n";
- }
$content .= '$CONFIG = ';
$content .= var_export($this->cache, true);
$content .= ";\n";