Fixed "Using when not in object context" error when installer query fails.

This commit is contained in:
JustAMacUser 2019-11-05 19:35:48 -05:00
parent f6090655bf
commit 3cae6fe6ad
1 changed files with 1 additions and 1 deletions

View File

@ -437,7 +437,7 @@
if (!$res) {
print_notice("Query: $line");
print_error("Error: " . implode(", ", $this->pdo->errorInfo()));
print_error("Error: " . implode(", ", $pdo->errorInfo()));
}
}
}