1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 11:36:38 +02:00

BUILD : 1.7.17 (1204) BUGS : 629 NOTES : Fixed ns_alist which did not accept Founder as a correct min_lev

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@923 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-12-10 12:08:02 +00:00
parent bcd28b951d
commit 38d475d41b
3 changed files with 7 additions and 2 deletions
+1
View File
@@ -11,6 +11,7 @@ Anope Version S V N
12/07 F Windows install.js script is now able to check multiple drives. [#634]
12/09 F Reviewed and updated all of the MySQL code. [ #00]
12/09 F Langfiles had CHANAKILL instead of CHANKILL in syntax lines. [#640]
12/10 F NickServ ALIST not accepting Founder as level param. [#629]
Anope Version 1.7.17
--------------------
+1 -1
View File
@@ -131,7 +131,7 @@ int do_alist(User * u)
notice_lang(s_NickServ, u, NICK_X_NOT_REGISTERED, nick);
} else if (na->status & NS_VERBOTEN) {
notice_lang(s_NickServ, u, NICK_X_FORBIDDEN, na->nick);
} else if (min_level <= ACCESS_INVALID || min_level >= ACCESS_FOUNDER) {
} else if (min_level <= ACCESS_INVALID || min_level > ACCESS_FOUNDER) {
notice_lang(s_NickServ, u, CHAN_ACCESS_LEVEL_RANGE,
ACCESS_INVALID + 1, ACCESS_FOUNDER - 1);
} else {
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="17"
VERSION_EXTRA="-svn"
VERSION_BUILD="1203"
VERSION_BUILD="1204"
# $Log$
#
# BUILD : 1.7.17 (1204)
# BUGS : 629
# NOTES : Fixed ns_alist which did not accept Founder as a correct min_lev
#
# BUILD : 1.7.17 (1203)
# BUGS :
# NOTES : Small MySQL fix which should have already been in