Georg89
Results 1 - 1 of 1
Hi there,
Great component!
I'm using PHP5.21 and got these errors:
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. in
[path]/administrator/components/com_joomleague/admin.joomleague.php
on line 187
[path]/administrator/components/com_joomleague/classes/Ranking.class.php on line 116 [and] on line 125
Solution:
Change this on line 187:
$joomleague_ranking->setProject(&$project);
to this
$joomleague_ranking->setProject($project);
Same with the 2 lines in the other file, just edit out the '&' and the error will go away;
Thanks,
G.
Great component!
I'm using PHP5.21 and got these errors:
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. in
[path]/administrator/components/com_joomleague/admin.joomleague.php
on line 187
[path]/administrator/components/com_joomleague/classes/Ranking.class.php on line 116 [and] on line 125
Solution:
Change this on line 187:
$joomleague_ranking->setProject(&$project);
to this
$joomleague_ranking->setProject($project);
Same with the 2 lines in the other file, just edit out the '&' and the error will go away;
Thanks,
G.


