Log in

View Full Version : Simple Question


Lars-Christian
04-02-2005, 02:18 AM
I noticed that when a user is banned through AWS, the rank "Temporarily Banned" overwrites the default set for the usergroup he's moved in to. Any way of changing this?

Alternatively, how do I simply change "Temporarily Banned" to "Banned User" ?

Thanks

Delphiprogrammi
04-02-2005, 11:08 AM
hi,

do you mean the "custom ban" message if a banned user trys to login to your forums ? that's defined in "/includes/functions.php"


if (($bbuserinfo['usergroupid']==$vboptions['warn_banned_usergroup_id'] OR $bbuserinfo['usergroupid']==$vboptions['warn_troll_usergroup_id']) AND $bbuserinfo['userid'])
{
$ban=$DB_site->query_first("SELECT liftdate FROM " . TABLE_PREFIX . "userban WHERE userid=$bbuserinfo[userid]");
if ($ban['liftdate']=='0')
{
$until="Permanently Banned";
}
else
{
$until=vbdate($vboptions['dateformat'],$ban[liftdate]);
$until=" temporarily banned, until the $until";
}
eval(print_standard_error('nopermission_banned',tr ue));
}


$until ="temporarly banned,until the $until" (temporarly banned can be changed)

as for the usergroup thingy you should be able to define this this through your usergroupmanager and the aws settings open this url

http://www.yoursite.com/vbulletin/admincp/admin_warn.php?act=manageoptions there you can define what happens if a user get's banned

sv1cec
04-02-2005, 11:51 AM
No, he is talking about the user title, which I change to temporarily banned or permanently banned. In the file includes/functions_warning.php, find every occurence of:


$DB_site->query("
UPDATE " . TABLE_PREFIX . "user SET
usergroupid = $usergroupid,
displaygroupid = $usergroupid,
warnings=$warnings,
warning_bans = $number_of_bans,
usertitle = '" . addslashes($title) . "'
WHERE userid = $user[userid]


and replace that with:


$DB_site->query("
UPDATE " . TABLE_PREFIX . "user SET
usergroupid = $usergroupid,
displaygroupid = $usergroupid,
warnings=$warnings,
warning_bans = $number_of_bans
WHERE userid = $user[userid]


Rgds