server/lib/classes/ini_parser.inc.php
@@ -37,9 +37,8 @@ $lines = explode("\n",$ini); foreach($lines as $line) { if($line != '') { $line = trim($line); if($line != '') { if(preg_match("/^\[([\w\d_]+)\]$/", $line, $matches)) { $section = strtolower($matches[1]); } elseif(preg_match("/^([\w\d_]+)=(.*)$/", $line, $matches) && $section != null) {