Open shoutbox.php
There should be some code below:
Code:
require("./global.php");
It will look vaguely like:
Code:
$DB_site->query("DELETE FROM shoutbox WHERE shoutid = $shoutid");
header("Location: $PHP_SELF?s=$sessionhash[sessionid]");
}
with an "if" line at the beginning...
Replace that section with:
Code:
if (($bbuserinfo[usergroupid] == 5 || $bbuserinfo[usergroupid] == 6 || $bbuserinfo[usergroupid] == 7) && $action == 'delete' && $shoutid) {
$DB_site->query("DELETE FROM shoutbox WHERE shoutid = $shoutid");
header("Location: $PHP_SELF?s=$sessionhash[sessionid]");
}
Satan