everytime you update Geshi it stops working ?????
PHP Code:
if (!function_exists('handle_bbcode_highlight'))
{
function handle_bbcode_highlight(&$parser, $code, $type)
{
global $vbulletin, $vbphrase, $stylevar, $show;
static $codefind1, $codereplace1, $codefind2, $codereplace2;
$code = $parser->strip_front_back_whitespace($code, 1);
if (!is_array($codefind))
{
$codefind1 = array(
'<br>', // <br> to nothing
'<br />' // <br /> to nothing
);
$codereplace1 = array(
'',
''
);
$codefind2 = array(
'>', // > to >
'<', // < to <
'"', // " to ",
'&', // & to &
'[', // [ to [
']', // ] to ]
);
$codereplace2 = array(
'>',
'<',
'"',
'&',
'[',
']',
);
}
$code = trim(str_replace($codefind1, $codereplace1, $code));
$blockheight = $parser->fetch_block_height($code) + 18; // fetch height of block element
$code = str_replace($codefind2, $codereplace2, $code); // finish replacements
$path = DIR . '/includes/geshi/';
//$code = geshi_highlight($code, $type, $path, true);
$geshi = new GeSHi($code, $type, $path);
$geshi->enable_line_numbers(GESHI_NORMAL_LINE_NUMBERS);
$geshi->set_url_for_keyword_group($group, $url);
$geshi->set_link_target('_BLANK', $styles);
$tabs = 4;
$geshi->set_header_type(GESHI_HEADER_DIV);
$geshi->set_tab_width($tabs);
$code = $geshi->parse_code();
$code = preg_replace('/&#([0-9]+);/', '&#$1;', $code);
$code = str_replace(array('[', ']', "\n"), array('[', ']', ''), $code);
$template = $parser->printthread ? 'bbcode_highlight_printthread' : 'bbcode_highlight';
eval('$html = "' . fetch_template($template) . '";');
return $html;
}
}
$this->tag_list['option']['highlight'] = array(
'callback' => 'handle_external',
'strip_empty' => true,
'stop_parse' => true,
'disable_smilies' => true,
'disable_wordwrap' => true,
'strip_space_after' => 1,
'external_callback' => 'handle_bbcode_highlight'
);
require_once(DIR . '/includes/geshi.php');
still the php keywords are not linked

damn it