IniParser: Use mode INI_SCANNER_RAW to parse ini files

This commit is contained in:
Johannes Meyer 2018-10-09 10:25:46 +02:00
parent 4e6b936862
commit 86ae8c12df
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ class IniParser
}
try {
$configArray = parse_ini_string($content, true);
$configArray = parse_ini_string($content, true, INI_SCANNER_RAW);
} catch (ErrorException $e) {
throw new ConfigurationError('Couldn\'t parse the INI file `%s\'', $path, $e);
}