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

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/33921/head
Côme Chilliet 2022-09-06 17:22:16 +07:00
parent 2c08e6f080
commit c2dafb0997
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
1 changed files with 4 additions and 0 deletions

@ -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 = ';