From: Alexandre Emsenhuber Date: Sun, 2 Jan 2011 19:04:23 +0000 (+0000) Subject: Fix for r64254: undefined variable X-Git-Tag: 1.31.0-rc.0~32877 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=62e5d4ba707c9774e3bf15ac1f643bd542c38e2f;p=lhc%2Fweb%2Fwiklou.git Fix for r64254: undefined variable --- 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;