Quote:
Originally Posted by Anek
Hi.
I replaced the code but now when I click on "warn XYZ" or "View XYZ's Warnings" it give me this error
Code:
Parse error: parse error, unexpected T_VARIABLE in /home/www/.........../Warn.php on line 278
where line 278 is the first line of your code... any idea?
Thx
|
Yes, as I said before, I have made several changes in this hack, to make it more suitable for my needs. One such change is the addition of a new field, warn_permban in the table, which indicates if the offence of the user deserves (and gives him) a permanent ban. You obviously do not have that field in your database and you get that error.
You may remove that part of the code, and use it. Just replace:
PHP Code:
if($warn_type['warn_permban']=="Yes")
{$liftdate=0;
}
else
{$liftdate=$time_unban;
}
with
PHP Code:
$liftdate=$time_unban;
That should do it.
Let me know if it works.
Rgds
------------
John