@Doctor Death & apfparadise:
Quote:
Parse error: parse error, unexpected '&', expecting T_VARIABLE or '$' in /home/xxxxxxx/public_html/forums/includes/class_bbcode.php(166) : eval()'d code on line 16
|
This is because you're still using PHP4 (or lower). I went ahead and made it backwards compatible.
Either re-download the .xml and import it or make the following modifcation yourself:
In the
Create handle_bbcode_map() for handling of [map] tags plugin:
FIND:
PHP Code:
foreach ($locations as &$location)
REPLACE:
PHP Code:
foreach ($locations as $location)
That will fix that error.