Quote:
Originally Posted by DragonByte Tech
Please ensure that the contents of the bbcode_parse_complete_precache plugin is this:
PHP Code:
if (!class_exists('vB_Template'))
{
// Ensure we have the template class
require(DIR . '/dbtech/usertag/class_template.php');
}
static $mention;
global $vbulletin;
if (empty($mention))
{
//only figure this out once
$mention = vB_Template::create('dbtech_usertag_mention')->render();
// This is because of vB's template system
$mention = str_replace('?1', '$1', $mention);
$mention = str_replace('?2', '$2', $mention);
}
$text = preg_replace('/\[\/?mention=?\]/i', '', preg_replace('/\[mention=(\d+)\](.*)\[\/mention\]/iU', $mention, $text));
//$text = $this->parse_bbcode(preg_replace('/\[\/?mention=?\]/i', '', preg_replace('/\[mention=(\d+)\](.*)\[\/mention\]/iU', $mention, $text)), $do_smilies, $do_imgcode, $do_html);
Fillip
|
Thanks, the contents of that plugin were not the same. I changed it to exactly as you said above... but I'm now getting these errors at the top of the forum:
Quote:
Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
|