Merge pull request #3407 from Icinga/bugfix/dashboard-name-escaped-char-3357

IniParser::parseIniFile(): parse as ::parseIni() would do
This commit is contained in:
Johannes Meyer 2018-04-05 11:42:00 +02:00 committed by GitHub
commit e002383a90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -267,6 +267,11 @@ class IniParser
throw new ConfigurationError('Couldn\'t parse the INI file `%s\'', $path, $e);
}
return Config::fromArray($configArray)->setConfigFile($file);
$unescaped = array();
foreach ($configArray as $section => $options) {
$unescaped[preg_replace('/\\\\(.)/', '\1', $section)] = $options;
}
return Config::fromArray($unescaped)->setConfigFile($file);
}
}