Handle previously renamed CONFIG_PATH gracefully

pull/553/head
Lucas Savva 2019-12-24 19:11:38 +00:00
parent d5d13fa831
commit 7d9ec9509b
1 changed files with 8 additions and 4 deletions

View File

@ -107,7 +107,8 @@ class Configuration
$configFile = $basePath . 'conf.php';
if (getenv('CONFIG_PATH') !== false) {
$configFile = getenv('CONFIG_PATH');
$configFile = getenv('CONFIG_PATH');
$configFilePhp = substr($configFile, 0, -3) . 'php';
// Rename INI files to avoid configuration leakage
if (
@ -115,9 +116,12 @@ class Configuration
is_readable($configFile) &&
is_writable(dirname($configFile))
) {
$oldConfigFile = $configFile;
$configFile = substr($configFile, 0, -3) . 'php';
DataStore::prependRename($oldConfigFile, $configFile, ';');
DataStore::prependRename($configFile, $configFilePhp, ';');
}
// Rename successful? Already renamed? use that file
if (is_readable($configFilePhp)) {
$configFile = $configFilePhp;
}
}