From 62e5d4ba707c9774e3bf15ac1f643bd542c38e2f Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 2 Jan 2011 19:04:23 +0000 Subject: [PATCH] Fix for r64254: undefined variable --- includes/installer/DatabaseInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/DatabaseInstaller.php b/includes/installer/DatabaseInstaller.php index c88d6266c0..dacb1d9faa 100644 --- a/includes/installer/DatabaseInstaller.php +++ b/includes/installer/DatabaseInstaller.php @@ -131,7 +131,7 @@ abstract class DatabaseInstaller { $error = $this->db->sourceFile( $this->db->getSchema() ); if( $error !== true ) { - $this->db->reportQueryError( $error, 0, $sql, __METHOD__ ); + $this->db->reportQueryError( $error, 0, '', __METHOD__ ); $status->fatal( 'config-install-tables-failed', $error ); } return $status; -- 2.20.1