diff --git a/web/includes/config.php.in b/web/includes/config.php.in index 9557b819d..0d173d9b4 100644 --- a/web/includes/config.php.in +++ b/web/includes/config.php.in @@ -301,7 +301,7 @@ function process_configfile($configFile) { if (is_readable($configFile)) { $cfg = fopen($configFile, 'r') or error_log('Could not open config file: '.$configFile); while ( !feof($cfg) ) { - $str = fgets($cfg, 256); + $str = fgets($cfg, 512); if ( preg_match('/^\s*(#.*)?$/', $str) ) { continue; } else if ( preg_match('/^\s*([^=\s]+)\s*=\s*[\'"]*(.*?)[\'"]*\s*$/', $str, $matches) ) {