Preserve Debug flag accross config writes

remotes/origin/stable6
Brice Maron 12 years ago
parent e5a497c924
commit a68cbb00e0
  1. 6
      lib/config.php

@ -155,7 +155,11 @@ class OC_Config{
*/
public static function writeData() {
// Create a php file ...
$content = "<?php\n\$CONFIG = ";
$content = "<?php\n ";
if (defined('DEBUG') && DEBUG) {
$content .= "define('DEBUG',true);\n";
}
$content .= "\$CONFIG = ";
$content .= var_export(self::$cache, true);
$content .= ";\n";

Loading…
Cancel
Save