Quote:
Originally Posted by Martyn1983
Hi, having problems getting this to work - see www.fiat-scotland.com
Really not sure whats causing the breaks. Any help would be awesome!
|
see if this works.
Find
Code:
// vBulletin: Parse BBCode
if (!is_object($bbcode_parser)){
require_once('./includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}
replace with
Code:
// vBulletin: Parse BBCode
if (!is_object($bbcode_parser)){
require_once('../upload/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}
Find
Code:
$link = "./showthread.php?t=".$threadid."";
$imagepath = "./attachment.php?attachmentid=".$pic['attach'];
replace with
Code:
$link = "../upload/showthread.php?t=".$threadid."";
$imagepath = "../upload/attachment.php?attachmentid=".$pic['attach'];