This seems this is a safer way to check for errors, on my install, the old method never triggered an error.
lines starting around ~388
$matches = array();
preg_match($error, $output, $matches);
if ($matches[1]) {
should be replaced by
if (preg_match($error, $output)) {
Comments
Comment #1
arthurf commentedThere is new code in that does something similar to this. Thanks for the report