Quote:
Originally Posted by Dragonsys
why are you using continue without a loop?
I would remove this, it is rather pointless in that code:
PHP Code:
if ($vbulletin->GPC['points'] == 0) {
continue;
}
or comment it out until you are ready to do something with it. This might be the cause of your 500 error
|
I am trying to prevent the bottom code from running if the infraction points being handed out = 0.