yes i did
the file functions.php is in this path right??? /public_html/vb/includes
PHP Code:
if ($vbulletin->options['addtemplatename'] AND $gethtmlcomments)
{
$templatename = preg_replace('#[^a-z0-9_]#i', '', $templatename);
return "<!-- BEGIN TEMPLATE: $templatename -->\n$template\n<!-- END TEMPLATE: $templatename -->";
}############### SMARTY
global $smarty, $tempusagecache;
if (is_object($smarty)) {
$vbulletin->temp_output = $template;
$template = $smarty->fetch('db:'. $templatename . '');
}
############### /SMARTY
return $template;
}