1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/15910] Pass object arguments by reference implicitly

PHPBB3-15910
This commit is contained in:
kasimi
2018-12-12 12:34:16 +01:00
parent 73fd2f3573
commit 83f4074116
21 changed files with 45 additions and 45 deletions

View File

@@ -28,9 +28,9 @@ class mcp_warn
var $p_master;
var $u_action;
function __construct(&$p_master)
function __construct($p_master)
{
$this->p_master = &$p_master;
$this->p_master = $p_master;
}
function main($id, $mode)