Hope this is the code you are referring too. There are a lot of different areas of code.
if (defined('VBBLOG_CACHED_TEMPLATES'))
{
eval('$template_hook[\'navbar_buttons_left\'] .= "' . fetch_template('blog_navbar_link') . '";');
eval('$template_hook[\'navbar_search_menu\'] .= "' . fetch_template('blog_navbar_search') . '";');
}
if ($vbulletin->templatecache['blog_bbcode_quote'])
{
$vbulletin->templatecache['bbcode_quote'] =& $vbulletin->templatecache['blog_bbcode_quote'];
$vbulletin->templatecache['bbcode_code'] =& $vbulletin->templatecache['blog_bbcode_code'];
$vbulletin->templatecache['bbcode_html'] =& $vbulletin->templatecache['blog_bbcode_html'];
$vbulletin->templatecache['bbcode_php'] =& $vbulletin->templatecache['blog_bbcode_php'];
}
--------------- Added [DATE]1209774447[/DATE] at [TIME]1209774447[/TIME] ---------------
Or maybe this one under a description of: Add link to Blog...
if (defined('VBBLOG_CACHED_TEMPLATES') AND $post['entries'] > 0)
{
eval('$template_hook[\'postbit_userinfo_right_after_posts\'] .= "' . fetch_template('blog_postbit_entries_link') . '";');
eval('$template_hook[\'postbit_user_popup\'] .= "' . fetch_template('blog_postbit_blog_link') . '";');
|