Quote:
Originally Posted by Colossal31
Ok I got these messages:
Strict Standards: Only variables should be assigned by reference in /public_html/forums/teams.php on line 88
Strict Standards: Only variables should be assigned by reference in /public_html/forums/tournaments.php on line 112
I am aware of the php 5.4/5.5 changes and already have these hidden with the aforementioned hiding code in the inlcude/config.php file. However these errors are still showing any help will be appreciated
|
Not sure on the second error but the first one is fixed by this:
Try changing line 88 in /teams.php
$actiontemplates['none'] =& array_merge($actiontemplates['teams'], $actiontemplates['viewteam']);
To
$actiontemplates['none'] = array_merge($actiontemplates['teams'], $actiontemplates['viewteam']);