The problem is that the bbcode parsing stuff changed. Add this code (in red) around the beginning of the writenews function:
Code:
require_once('./includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
function writenews($cats, $filetw, $newsitems=7){
global $servername;
global $dbusername;
global $dbpassword;
global $dbname;
global $forumspath;
global $bbcode_parser;
//Connect to the database
then find "This parses the bbcode" and change it like this:
Code:
// This parses the bbcode
//require_once("./includes/functions_bbcode.php");
//$outxt=parse_bbcode2($ptext,"1","1","1","1","1");
$outxt = $bbcode_parser->parse($ptext, $row['forumid']);
(You can delete the old lines if you want, I commented them out so you could see what I changed.)