I noticed that when I was viewing the vB code help page I received an error that pointed Me to this line
PHP Code:
($hook = vBulletinHook::fetch_hook('misc_bbcode_complete')) ? eval($hook) : false;
in misc.php. Looking into what modification that uses the misc_bbcode_complete hook I find product [Hde] Ressurection version 2.6 to be the user.
A review of the code attached to the misc_bbcode_complete hook shows that the lines
PHP Code:
if (($vbulletin->options['enable_hide_tag'])
and
PHP Code:
if (($vbulletin->options['enable_showtogroups_tag'])
to have an error in their syntax use. I corrected the lines to read out
PHP Code:
if ($vbulletin->options['enable_hide_tag'])
and
PHP Code:
if ($vbulletin->options['enable_showtogroups_tag'])
to eliminate the produced error.