Matt,
The first error is easy, you need to add a semicolon at the line which says:
$usergroupid=8
Change that to
$usergroupid=8;
As far as the second mistale is concerned, have you commented out both lines starting with "$messageb=...."? There are two lines there, looking like:
PHP Code:
$messageb="You have been warned for one of your posts: [url={$vboptions[bburl]}/showthread.php?p={$_POST['post']}]click here to see it[/url]. Your warning level is now: {$level}. Click on the [b]Quick Links[/b] menu above and select [b]View Your Warnings[/b], to see details about all the warnings you have received. The person who warned you, entered this comment: [i]{$_POST['comment']}[/i]. Please reply back if you have a dispute.";
$messageb=ParseInput($messageb);
You have to comment these lines, add two // in front of each one of them, or just delete them. Then, add a row like:
PHP Code:
eval('$messageb .= "' . fetch_template('warn_pm') . '";');
in their place.
My warn.php looks like that, in that area:
PHP Code:
eval('$messageb .= "' . fetch_template('warn_pm') . '";');
$title="You have been warned";
$to=$user['userid'];
$from=$bbuserinfo['userid'];
SendPM($messageb,$title,$to,$from);
Let me know if these help.
Rgds
----------
John