Fix for r64254: undefined variable
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 2 Jan 2011 19:04:23 +0000 (19:04 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 2 Jan 2011 19:04:23 +0000 (19:04 +0000)
includes/installer/DatabaseInstaller.php

index c88d626..dacb1d9 100644 (file)
@@ -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;