Quote:
Originally Posted by calorie
Untested, but try the following plugin ( how to add a plugin):
Code:
Product: whatever you want
Hook Location: report_start
Title: whatever you want
Execution Order: 5 is okay
Plugin PHP Code:
// replace X with user's id
if ($vbulletin->userinfo['userid'] == X)
{
print_no_permission();
}
Plugin is Active: Yes
|
Hi There...
Apologies for not getting back to you sooner !
The Report Abuser has got to a level that he is reporting up to 200 per month, so I've had to be a bit more drastic.
The plug in method didn't work, so I went about it in a different way.
In the report.php file on the server, I added (in bold)..
Find the first if(!$vbulletin->userinfo which is after the start of the main script part of the code then add the bit in bold....
Quote:
if (!$vbulletin->userinfo['userid'] OR
$vbulletin->userinfo['userid'] == XX)
{
print_no_permission();
}
|
XX for the userid.
Drastic I know, but, it works....