Quote:
Originally Posted by wastemytime
In Version 2.3.9, by clicking on my Navbar Link Tournaments:
Code:
Parse error: syntax error, unexpected '&', expecting T_VARIABLE or '$' in /home/clients/xxx/www/tournament.php on line 215
|
Sorry i used a bit of code which doesnt work with PHP 4 heres the fix below.
Find in
tournament.php
Code:
foreach ($errors as &$error) {
Replace with
Code:
foreach ($errors as $error) {