CIRCChannel.on367 Member

channel ban stuff

Syntax

object.on367(e);

Arguments

ArgumentSummary
e

Returns

Remarks

See Also

Source Code

function my_bans(e)
{
if ("pendingBanList" in this)
return;
var msg = getMsg(MSG_BANLIST_ITEM,
[e.user.unicodeName, e.ban, this.unicodeName, e.banTime]);
if (this.iAmHalfOp() || this.iAmOp())
msg += " " + getMsg(MSG_BANLIST_BUTTON, "mode -b " + e.ban);
client.munger.getRule(".inline-buttons").enabled = true;
this.display(msg, "BAN");
client.munger.getRule(".inline-buttons").enabled = false;
}