Hey gents. If you wouldn't mind, I'd appreciate it if someone could take a look at this and see if they can figure out why it's not working.
PHP Code:
if ($_REQUEST['do'] == 'admin')
{
if (is_member_of($bbuserinfo, 6)){
eval('print_output("' . fetch_template('blast_admin') . '");');
}
else
{
eval(standard_error(fetch_error('perms')));
}
}
else
{
eval('print_output("' . fetch_template('blast_post_message') . '");');
}
When I (Admin) test it out, I'm always satisfying the second ELSE -- but I should be qualifying the first IF statement. I'd imagine its got something to do with my IF nesting.