Quote:
Originally Posted by SilverBoy
I solved one problem
Code:
if($_GET['do'] != 'viewmywarnings')
{
if(!can_moderate())
{
print_no_permission();
}
}
again you have capital letters missed 
|
yes indeed that will throw up a standard vBulletin permission denied page it should be
PHP Code:
if($_GET['do'] != 'ViewMyWarnings')
{
if(!can_moderate())
{
print_no_permission();
}
}
Junkie this will also fix your problem it's in Warn.php starting line 81