From: Brion Vibber Date: Fri, 11 Jun 2010 19:38:22 +0000 (-0700) Subject: Fix for DB error reporting in installer (MySQL path) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3da8914edb81a1789d69ee6c32092959630e4e1c;p=quix0rs-gnu-social.git Fix for DB error reporting in installer (MySQL path) --- diff --git a/lib/installer.php b/lib/installer.php index 7936d5d5d1..78461efb72 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -446,7 +446,7 @@ abstract class Installer case 'mysqli': $res = $conn->query($stmt); if ($res === false) { - $error = $conn->error(); + $error = $conn->error; } break; case 'pgsql':