"ban remove" signal should pass who removed it, patch by Timothy Hatcher (Bug 166)

added it to docs/signals.txt too


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3696 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Wouter Coekaerts 2005-01-03 18:54:39 +00:00 committed by coekie
commit 124e79aeeb
4 changed files with 5 additions and 5 deletions

View file

@ -207,7 +207,7 @@ void modes_type_a(IRC_CHANNEL_REC *channel, const char *setby, char type,
if (type == '+')
banlist_add(channel, arg, setby, time(NULL));
else
banlist_remove(channel, arg);
banlist_remove(channel, arg, setby);
}
}