diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-05 07:06:25 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-12-05 07:06:25 +0000 |
commit | a7a948262a15f7c5788415ee70507ca6054155d2 (patch) | |
tree | d64e3a9e4865073fb4c8ab0f53a74f9af518dfa0 | |
parent | e31a0356a4e7f44d934c7fb6711a440525adc602 (diff) |
BUILD : 1.7.6 (476) BUGS : N/A NOTES : Fixed Ultimate3 not setting +a on channel admins
git-svn-id: svn://svn.anope.org/anope/trunk@476 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@330 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/nickserv.c | 4 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 10 insertions, 1 deletions
@@ -13,6 +13,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004 11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00] 11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00] 11/18 A NSAddAccessOnReg to control access list on registration. [ #00] +12/05 F Ultimate3 not setting +a on channel admins [ #00] 12/04 F Cleaned up some memory warnings found with Valgrind [ #00] 12/03 F Unreal 391 TIME replies [ #00] 12/03 F CS TOPICLOCK setting a maliformed topic in some cases [ #00] diff --git a/src/nickserv.c b/src/nickserv.c index 49cc697c5..2872cd348 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -2662,6 +2662,10 @@ static int do_setmodes(User * u) && should_mode_change(uc->status, CUS_PROTECT) && check_should_protect(u, chan)) { chan_set_user_status(c, u, CUS_PROTECT); + } else if (ircd->admin + && should_mode_change(uc->status, CUS_PROTECT) + && check_should_protect(u, chan)) { + chan_set_user_status(c, u, CUS_PROTECT); } else if (should_mode_change(uc->status, CUS_OP) && check_should_op(u, chan)) { chan_set_user_status(c, u, CUS_OP); diff --git a/version.log b/version.log index 4a52c15e0..bf8fbf13b 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="6" -VERSION_BUILD="475" +VERSION_BUILD="476" # $Log$ # +# BUILD : 1.7.6 (476) +# BUGS : N/A +# NOTES : Fixed Ultimate3 not setting +a on channel admins +# # BUILD : 1.7.6 (475) # BUGS : 126 # NOTES : Some valgrind clean up, should fix 126 |