1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 06:23:14 +02:00

BUILD : 1.7.5 (341) BUGS : none NOTES : Fixed minor bug in /CS LOGOUT

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@217 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-09-07 18:19:18 +00:00
parent b0c19c6702
commit 6c2674da5a
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -2683,7 +2683,7 @@ static int do_logout(User * u)
CHAN_LOGOUT_SERVADMIN_SYNTAX));
} else if (!(ci = cs_findchan(chan))) {
notice_lang(s_ChanServ, u, CHAN_X_NOT_REGISTERED, chan);
} else if (!is_servadmin & (ci->flags & CI_VERBOTEN)) {
} else if (!is_servadmin && (ci->flags & CI_VERBOTEN)) {
notice_lang(s_ChanServ, u, CHAN_X_FORBIDDEN, chan);
} else if (nick && !(u2 = finduser(nick))) {
notice_lang(s_ChanServ, u, NICK_X_NOT_IN_USE, nick);
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="5"
VERSION_BUILD="340"
VERSION_BUILD="341"
# $Log$
#
# BUILD : 1.7.5 (341)
# BUGS : none
# NOTES : Fixed minor bug in /CS LOGOUT
#
# BUILD : 1.7.5 (340)
# BUGS : none
# NOTES : Applied patch 830 provided by Trystan to resolve several issues.