Quote:
Originally Posted by HMBeaty
Redownload and reupload all files. unexpected $end usually means there's an incomplete file
|
It's vB error and not of this mod, or any other mod. It appear to my own mod too.
The parse code:
Code:
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
has problems in some configurations in window servers. This must be change by removing the refference &
Code:
$bbcode_parser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
Chris