diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-06-12 03:11:18 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-06-12 03:11:18 +0000 |
commit | 06d52335024c3a1c464fdf1744319abde271e6cd (patch) | |
tree | 7d52ec7953f7becbd118c13b5da2da2ebf962dae | |
parent | a4b40f6f675d013698206201e805af12a46e41de (diff) |
Bugfix for bug #1082, remove check for NSModeOnID from NS UPDATE, it's not logical to check for NSModeOnID since you must be identified to use NS UPDATE anyways.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2322 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 4 | ||||
-rw-r--r-- | src/core/ns_update.c | 3 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 4 deletions
@@ -23,6 +23,8 @@ Provided by Anope Dev. <team@anope.org> - 2009 04/03 F SECUREOPS now igores modechanges from ulined servers. [#1004] 04/06 F Patch to update documentation on CS RESTRICTED... [#1039] 04/18 F Don't enforce akicks/forbidden/.. on clients on ulined servers. [ #00] +06/02 F Fixing CS HELP output to not imply you can invite anyone... [#1081] +06/11 F Remove check for NSModeOnID from NS UPDATE. [#1082] Provided by Adam <Adam@SubZeroIRC.net> - 2009 01/28 F Added internal support for +j channelmodes. [#1001] @@ -39,7 +41,7 @@ Provided by mooncup <mooncup@anonnet.org> - 2009 Provided by DukePyrolator <> - 2009 03/15 F Log error when NSMemoReceipt isn't defined in config. [ #00] 03/22 F Fixed memleak in channels.c. [ #00] -05/17 F Change sizeof() to strlen() in db_mysql_secure(). [ #00] +05/17 F Change sizeof() to strlen() in db_mysql_secure(). [ #00] Provided by Szymek <> - 2009 03/30 F Fix HS OFF to work in all cases on InspIRCd. [#1075] diff --git a/src/core/ns_update.c b/src/core/ns_update.c index 9807c8591..b002b3f85 100644 --- a/src/core/ns_update.c +++ b/src/core/ns_update.c @@ -73,8 +73,7 @@ int do_nickupdate(User * u) notice_lang(s_NickServ, u, NICK_IDENTIFY_REQUIRED, s_NickServ); } else { na = u->na; - if (NSModeOnID) - do_setmodes(u); + do_setmodes(u); check_memos(u); if (na->last_realname) free(na->last_realname); diff --git a/version.log b/version.log index bfbdfc199..ee12dbd2f 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="8" VERSION_PATCH="0" VERSION_EXTRA="-svn" -VERSION_BUILD="2301" +VERSION_BUILD="2322" # $Log$ # Changes since 1.8.0 Release +#Revision 2322 - Bugfix for bug #1082, remove check for NSModeOnID from NS UPDATE, it's not logical to check for NSModeOnID since you must be identified to use NS UPDATE anyways. +#Revision 2321 - Fix potential crash in Charybdis protocol module, patch by Adam. +#Revision 2316 - Change default of UnRestrictSAdmin to enabled, so hopefully we get less users complaining about their +a being removed and being unable to use /sa* commands. +#Revision 2307 - [#1081] - Fixing CS HELP output to not imply you can invite anyone bar yourself into a channel. #Revision 2301 - Change sizeof() to strlen() in db_mysql_secure(), patch by DukePyrolator. #Revision 2299 - Fix bug #1078, MySQL query should no longer fail when password and salt are too long, patch from Adam. #Revision 2297 - Patch to allow jupe on all bar uplink and self. Thanks Adam. (Bug #1076) |