Quote:
Originally posted by Logician
If you replace line:
PHP Code:
if ($proxyip AND $bbuserinfo[usergroupid]!=6) { eval("standarderror(\"".gettemplate("error_banip")."\");");exit;}
As:
PHP Code:
if ($proxyip AND $bbuserinfo[usergroupid]==2) { eval("standarderror(\"".gettemplate("error_banip")."\");");exit;}
The hack will apply only to registered members and all other usergroups will be exempt..
|
should this,
PHP Code:
if ($proxyip AND $bbuserinfo[usergroupid]==2) { eval("standarderror(\"".gettemplate("error_banip")."\");");exit;}
be actually this:
PHP Code:
if ($proxyip AND $bbuserinfo[usergroupid]!=2) { eval("standarderror(\"".gettemplate("error_banip")."\");");exit;}
u have two "=" signs in there instead of "!="?? i dont' know much about vbb code but im good at seeing patterns. :banana: