mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
[ticket/15910] Pass object arguments by reference implicitly
PHPBB3-15910
This commit is contained in:
@@ -28,9 +28,9 @@ class mcp_queue
|
||||
var $p_master;
|
||||
var $u_action;
|
||||
|
||||
public function __construct(&$p_master)
|
||||
public function __construct($p_master)
|
||||
{
|
||||
$this->p_master = &$p_master;
|
||||
$this->p_master = $p_master;
|
||||
}
|
||||
|
||||
public function main($id, $mode)
|
||||
|
Reference in New Issue
Block a user