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

arthurf’s picture

Status: Active » Fixed

There is new code in that does something similar to this. Thanks for the report

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.