Hi there and excellent mod!
For those with the "Deprecated" on top of the screen you can replace
Line 586 of ladders.php
Code:
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list(), true);
with this one
Code:
unset ($bbcode_parser);
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list(), true);
and same thing on tournaments.php on line 3096
Code:
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list(), true);
with this
Code:
unset($bbcode_parser);
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list(), true);
This is for php 5.3.x users!
Again excellent mod ! Keep it up!
-Yiannis