I know this isn't supported, but I thought I would post this for anyone who might have installed this.
In one of the plugins, the template names to cache are incorrect, so if you have this enabled and haven't caught this already, you'll have two extra queries on your forumhome.
In '
SKM NUVM Prep and cache', change
PHP Code:
if ($vbulletin->options['skm_visitmsgcnt_onoff'])
{
$ugroups = explode(',',$vbulletin->options['skm_visitmsgcnt_displaygroups']);
if (is_member_of($vbulletin->userinfo,$ugroups) OR $ugroups[0] == 0)
{
$show['skm_visitmsgcnt'] = true;
$globaltemplates[] = 'skm_visitmsgcnt_body';
$globaltemplates[] = 'skm_visitmsgcnt_linkbit';
}
else
{
$show['skm_visitmsgcnt']= false;
}
}
else
{
$show['skm_visitmsgcnt']= false;
}
To:
PHP Code:
if ($vbulletin->options['skm_visitmsgcnt_onoff'])
{
$ugroups = explode(',',$vbulletin->options['skm_visitmsgcnt_displaygroups']);
if (is_member_of($vbulletin->userinfo,$ugroups) OR $ugroups[0] == 0)
{
$show['skm_visitmsgcnt'] = true;
$globaltemplates[] = 'skmnuvm_visitmsgcnt_body';
$globaltemplates[] = 'skmnuvm_visitmsgcnt_linkbit';
}
else
{
$show['skm_visitmsgcnt']= false;
}
}
else
{
$show['skm_visitmsgcnt']= false;
}
And you should be great. I also had a change for the display (personal preference). I'd be happy to fix this up and repack it if the author doesn't want to support it at all.
Aside from that, awesome mod.
-Dave