From 3cae6fe6addf62aae8f2462b42a143cb71b3d811 Mon Sep 17 00:00:00 2001 From: JustAMacUser Date: Tue, 5 Nov 2019 19:35:48 -0500 Subject: [PATCH] Fixed "Using when not in object context" error when installer query fails. --- install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/index.php b/install/index.php index 815422712..3db53107d 100755 --- a/install/index.php +++ b/install/index.php @@ -437,7 +437,7 @@ if (!$res) { print_notice("Query: $line"); - print_error("Error: " . implode(", ", $this->pdo->errorInfo())); + print_error("Error: " . implode(", ", $pdo->errorInfo())); } } }