
03-29-2006, 03:53 AM
|
 |
|
|
Join Date: Jan 2004
Location: Norway
Posts: 1,671
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Freesteyelz
Hey, Revan. Congrats on a cool, featured hack. I'm testing it now.
I've ran into this error when clicking on the clan info either in the postbit and clan list:
Code:
Fatal error: Cannot instantiate non-existent class: vb_bbcodeparser in /../showclans.php on line 172
So I checked that line in the "showclans.php" file. I'd figured changing just "$parser" to "$bbcode_parser" to no avail. I tried several other adjustments such as removing the entire code bit (below) but it rendered the BB code unusable. No signature would show, only the image. So I did this:
Replaced:
Code:
if ($clan['signature'])
{
/*
Signature parsed with default values:
HTML Off
BBCode On
Image Off
*/
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$show['clansig'] = $parser->do_parse($clan['signature'], false, true, false);
}
else
{
// Boring clan without a sig
$show['clansig'] = $vbphrase['rpg_na'];
}
With:
Code:
if ($clan['signature'])
{
/*
Signature parsed with default values:
HTML Off
BBCode On
Image Off
*/
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$show['clansig'] = $bbcode_parser->do_parse($clan['signature'], false, true, false);
}
else
{
// Boring clan without a sig
$show['clansig'] = $vbphrase['rpg_na'];
}
That seemed to have resolved the issue. Now when I click the clan info in postbit and Clan List the link renders correctly.
The BB Codes don't work on my end but no biggie. I'll post back with update after more testing. 
|
Seems like I just missed the include() there, thanks for spotting thsi
@ZIKI: Proof? Errors?
|