Thanks for the help everyone. I finally figured out what it was after looking at it a fourth time. For those having trouble make sure to check on this. Here is what I had in my global.php file:
Quote:
echo "End call of global.php: $aftertime\n";
// Creates general settings for the Arcade
$arcadegeneral = convert_bits_to_array($arcadesettings,$_ARCADE);
$arcadeuser = convert_bits_to_array($bbuserinfo['arcadesettings'],$_ARCADEUSER);
$arcadepermissions = convert_bits_to_array($permissions['arcadepermissions'],$_BITFIELD['usergroup']['arcadepermissions']);
echo "\n<hr />\n\n";
}
|
And of course, here is how it needs to look:
Quote:
echo "End call of global.php: $aftertime\n";
echo "\n<hr />\n\n";
}
// Creates general settings for the Arcade
$arcadegeneral = convert_bits_to_array($arcadesettings,$_ARCADE);
$arcadeuser = convert_bits_to_array($bbuserinfo['arcadesettings'],$_ARCADEUSER);
$arcadepermissions = convert_bits_to_array($permissions['arcadepermissions'],$_BITFIELD['usergroup']['arcadepermissions']);
|
Sorry for the trouble and I can only hope this may help out others with the similar issue.