mirror of
https://github.com/anope/anope.git
synced 2026-07-02 18:13:12 +02:00
BUILD : 1.7.6 (454) BUGS : 225 NOTES : MS CHECK now checks if the nick is forbidden.
git-svn-id: svn://svn.anope.org/anope/trunk@454 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@308 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
18cfa4226c
commit
a565117555
@@ -7,10 +7,11 @@ Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
|
||||
Provided by Trystan <trystan@nomadirc.net> - 2004
|
||||
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages [ #00]
|
||||
11/20 F Removing Sqline on bot nicks change if the nick was registered [#224]
|
||||
11/19 F normalizeBuffer() now strips control character 1 [ #00]
|
||||
11/19 F CTCP Ping replies when UsePrivmsg is enabled [ #00]
|
||||
11/19 F Some config options could overflow strtol() [ #00]
|
||||
09/27 F MS CHECK now checks if the nick is forbidden. [#225]
|
||||
11/20 F Removing Sqline on bot nicks change if the nick was registered. [#224]
|
||||
11/19 F normalizeBuffer() now strips control character 1. [ #00]
|
||||
11/19 F CTCP Ping replies when UsePrivmsg is enabled. [ #00]
|
||||
11/19 F Some config options could overflow strtol(). [ #00]
|
||||
11/16 F NickTracking could allow usage of forbidden nick in some cases. [ #00]
|
||||
|
||||
|
||||
|
||||
@@ -1388,6 +1388,11 @@ static int do_memocheck(User * u)
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
if ((na->status & NS_VERBOTEN)) {
|
||||
notice_lang(s_MemoServ, u, NICK_X_FORBIDDEN, recipient);
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
mi = &na->nc->memos;
|
||||
|
||||
/* Okay, I know this looks strange but we wanna get the LAST memo, so we
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="6"
|
||||
VERSION_BUILD="453"
|
||||
VERSION_BUILD="454"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.6 (454)
|
||||
# BUGS : 225
|
||||
# NOTES : MS CHECK now checks if the nick is forbidden.
|
||||
#
|
||||
# BUILD : 1.7.6 (453)
|
||||
# BUGS : 224
|
||||
# NOTES : Removing Sqline on bot nicks change if the nick was registered
|
||||
|
||||
Reference in New Issue
Block a user