Does anyone know what could be causing this I have disabled plugins one by one etc but can't find the cause
Code:
mod_fcgid: stderr: PHP Parse error: syntax error, unexpected '<' in /includes/class_core.php(4742) : eval()'d code on line 1
the code on that line is
Code:
protected function render_output($suppress_html_comments = false)
{
//This global statement is here to expose $vbulletin to the templates.
//It must remain in the same function as the template eval
global $vbulletin;
extract($this->registered, EXTR_SKIP | EXTR_REFS);
$actioned = false;
($hook = vBulletinHook::fetch_hook('template_render_output')) ? eval($hook) : false;
if (!$actioned)
{
$template_code = self::fetch_template($this->template);
}
if (strpos($template_code, '$final_rendered') !== false)
{
eval($template_code);
}
else
{
eval('$final_rendered = "' . $template_code . '";');
}
please help...