1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 16:26:38 +02:00

BUILD : 1.7.13 (979) BUGS : 455 NOTES : Fixed ns_saset: swapped args to createCommand and added check to see if nick was set

git-svn-id: svn://svn.anope.org/anope/trunk@979 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@704 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-03-01 10:52:02 +00:00
parent 0afacb171d
commit 4caab14b2b
3 changed files with 11 additions and 3 deletions
+1
View File
@@ -2,6 +2,7 @@ Anope Version S V N
--------------------
Provided by Anope Dev. <dev@anope.org> - 2006
02/04 A Events for channel kicks and NickServ logout. [ #00]
03/01 F Minor issues in ns_saset. [#455]
02/13 F Yet anotehr 64bit issue. [ #00]
01/14 F SGLines will now be removed correctly. [ #00]
01/26 F Export buildStringList() for modules. [#425]
+5 -2
View File
@@ -80,7 +80,7 @@ int AnopeInit(int argc, char **argv)
c = createCommand("SASET HIDE", NULL, is_services_admin,
NICK_HELP_SASET_HIDE, -1, -1, -1, -1);
moduleAddCommand(NICKSERV, c, MOD_UNIQUE);
c = createCommand("SASET NOEXPIRE", is_services_admin, NULL, -1, -1,
c = createCommand("SASET NOEXPIRE", NULL, is_services_admin, -1, -1,
-1, NICK_HELP_SASET_NOEXPIRE,
NICK_HELP_SASET_NOEXPIRE);
moduleAddCommand(NICKSERV, c, MOD_UNIQUE);
@@ -127,7 +127,10 @@ int do_saset(User * u)
notice_lang(s_NickServ, u, NICK_SASET_DISABLED);
return MOD_CONT;
}
if (!nick) {
syntax_error(s_NickServ, u, "SASET", NICK_SASET_SYNTAX);
return MOD_CONT;
}
if (!(na = findnick(nick))) {
notice_lang(s_NickServ, u, NICK_SASET_BAD_NICK, nick);
return MOD_CONT;
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="13"
VERSION_EXTRA="-svn"
VERSION_BUILD="978"
VERSION_BUILD="979"
# $Log$
#
# BUILD : 1.7.13 (979)
# BUGS : 455
# NOTES : Fixed ns_saset: swapped args to createCommand and added check to see if nick was set
#
# BUILD : 1.7.13 (978)
# BUGS : 417
# NOTES : fixed events on /join 0.