Great script, a must for moderators!
Installed!
I tried to make this script available ony to certain usergroups by trying this code:
Code:
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
if ( !$vbulletin->userinfo['userid'] )
{
print_no_permission();
}
if ( !$vbulletin->bbuserinfo['2'] )
{
print_no_permission();
}
but it did not seem to work. The code to prevent guests from viewing works fine, but the part for excluding only permitted user groups needs editing I guess.
Any ideas?