OK, works like a charm. I just dropped the correct code into a pre-existing page as you can see:
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'index');
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// pre-cache templates used by all actions
$globaltemplates = array(
'navbar',
'flash1',
'STANDARD_ERROR'
);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once('./includes/functions_bigthree.php');
require_once('./includes/functions_forumlist.php');
// ### ALL DONE! SPIT OUT THE HTML AND LET'S GET OUTA HERE... ###
if(in_array($bbuserinfo['usergroupid'], array(6,11)))
{
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('flash1') . '");');
}
else
{
eval('print_output("' . fetch_template('STANDARD_ERROR') . '");');
}
?>
If we are evaluating members who's primary user group is 6 or 11, it works great. That's administrators and a subscription group. However, if you are a member of the subscription group (11) and its a secondary group, it does not work correctly, you fall into the
else statement. Thoughts?