summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorJustAMacUser <[email protected]>2019-11-05 19:35:48 -0500
committerJustAMacUser <[email protected]>2019-11-05 19:35:48 -0500
commit3cae6fe6addf62aae8f2462b42a143cb71b3d811 (patch)
treeb8fde446ebf4a80b356961038d8edcd61beef490 /install
parentf6090655bfda2277fdec7ec5054b132c6d255213 (diff)
Fixed "Using when not in object context" error when installer query fails.
Diffstat (limited to 'install')
-rwxr-xr-xinstall/index.php2
1 files changed, 1 insertions, 1 deletions
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()));
}
}
}