[quote=“chad-bisd, post: 11610, member: 18”]When I researched this issue for the original help request, I found only the 1 file that used pass-by-reference in the function calls. All the other instances of &$ were in the function definitions iirc.[/quote]
Well, there is just another one in “management/lib/Group.class.php”.
[PHP]if ( $host->startTask($conn, $tasktype, $blShutdown, $port, $mcId, null, null, null, &$ireason) )[/PHP]
should be replaced by
[PHP]if ( $host->startTask($conn, $tasktype, $blShutdown, $port, $mcId, null, null, null, $ireason) )[/PHP]
All other pass-by-reference variables are in “management/includes/tasks.confirm.include.php”.