diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/chanserv.c | 1 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 1 deletions
@@ -33,6 +33,7 @@ Provided by Trystan <trystan@nomadirc.net> - 2004 09/07 A Ircd CHANMODE now trapped and stored. [ #00] 08/23 A New protocol independent design (aka anope-capab). [ #00] 08/28 A New IRCD document for adding new ircd support to new design. [ #00] +10/29 F Fixed CS CLEAR MODES not resetting the modes [#182] 10/29 F Fixed LogUser message, now normalizes the "realname" for display [#199] 10/29 F Fixed BS ACT, if the string contained control character 1 [#193] 10/27 F Fixed hardcored ircd sqlines from taking out services [#133] diff --git a/src/chanserv.c b/src/chanserv.c index 5416f60a0..5329964e3 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -5946,6 +5946,7 @@ static int do_clear(User * u) } } } + check_modes(c); } diff --git a/version.log b/version.log index 08fac027d..f801b959b 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="5" -VERSION_BUILD="432" +VERSION_BUILD="433" # $Log$ # +# BUILD : 1.7.5 (433) +# BUGS : 182 +# NOTES : Fixed CS not resetting the modes after CS CLEAR MODES +# # BUILD : 1.7.5 (432) # BUGS : 199 # NOTES : 1. fixed unused var from previous commit, 2. normalized the realname when doing LogUsers (199) |