Michael,
As far as I know, no--your second page should be working just fine. :hmm:
Ah, wait. XD It's right there in the page. Dunno how I missed it.
PHP Code:
// VBIV-6689 Caching.
$groupcache = array();
if ($vbulletin->options['flcache'])
{
require_once(DIR . '/includes/class_bootstrap_framework.php');
vB_Bootstrap_Framework::init();
$groupcache = vB_Cache::instance()->read('showgroups.groupcache');
}
Just change that to:
PHP Code:
$groupcache = array();
Are you going to be doing this for several groups? If so, it might actually be better altogether to use a plugin for it and just use the original vBulletin stuff. I mean if it's only one or two groups, I guess that'd be fine, but if you plan on adding more at a later date, I'll just make a plugin sometime the next few days, let ya test it out.