Browse Source

Do not empty config.php file if reading failed for any reason

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
tags/v25.0.0beta7
Côme Chilliet 1 year ago
parent
commit
c2dafb0997
No account linked to committer's email address
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      lib/private/Config.php

+ 4
- 0
lib/private/Config.php View File

@@ -262,6 +262,10 @@ class Config {
private function writeData() {
$this->checkReadOnly();

if (!is_file(\OC::$configDir.'/CAN_INSTALL') && !isset($this->cache['version'])) {
throw new HintException(sprintf('Configuration was not read or initialized correctly, not overwriting %s', $this->configFilePath));
}

// Create a php file ...
$content = "<?php\n";
$content .= '$CONFIG = ';

Loading…
Cancel
Save