We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5cfa3d commit 326e848Copy full SHA for 326e848
install/lib/install.lib.php
@@ -644,6 +644,7 @@ function ini_to_array($ini) {
644
$section = strtolower($matches[1]);
645
} elseif(preg_match("/^([\w\d_]+)=(.*)$/", $line, $matches) && $section != null) {
646
$item = trim($matches[1]);
647
+ if(!isset($config[$section])) $config[$section] = array();
648
$config[$section][$item] = trim($matches[2]);
649
}
650
0 commit comments