From: Chad Horohoe Date: Wed, 7 Jul 2010 13:56:44 +0000 (+0000) Subject: doesn't need to be passed by ref X-Git-Tag: 1.31.0-rc.0~36222 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=70062a61438915ae58f9da6ed205a02ffb17e79a;p=lhc%2Fweb%2Fwiklou.git doesn't need to be passed by ref --- 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 );