From 70062a61438915ae58f9da6ed205a02ffb17e79a Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 7 Jul 2010 13:56:44 +0000 Subject: [PATCH] doesn't need to be passed by ref --- includes/installer/MysqlInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/installer/MysqlInstaller.php b/includes/installer/MysqlInstaller.php index e1c67064ba..4b0cd9ba6b 100644 --- a/includes/installer/MysqlInstaller.php +++ b/includes/installer/MysqlInstaller.php @@ -371,7 +371,7 @@ class MysqlInstaller extends InstallerDBType { $callback = array( array( 'name' => 'user', - 'callback' => array( &$this, 'setupUser' ), + 'callback' => array( $this, 'setupUser' ), ) ); $this->parent->addInstallStepFollowing( "tables", $callback ); -- 2.20.1