diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-03-02 04:25:41 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-03-02 04:25:41 +0000 |
commit | f39c428ac5b9d87e2e5066d2cf6252b5d4fe86ba (patch) | |
tree | 7cb9d731cf5d1c6f56846f81dfb93fb7e13b83fc | |
parent | 60f0b2ff87fb5da159285b0189ae143ef8396896 (diff) |
Fixed a bug that would cause users access in channels to seemingly disappear. Introduced in release 1.8.3, revision 2667
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2800 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/chanserv.c | 1 | ||||
-rw-r--r-- | version.log | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/chanserv.c b/src/chanserv.c index f680d8250..07ce73299 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -1857,7 +1857,6 @@ void cs_remove_nick(const NickCore * nc) if (ca->in_use && ca->nc == nc) { ca->in_use = 0; ca->nc = NULL; - ci->accesscount--; } } CleanAccess(ci); diff --git a/version.log b/version.log index 13cbac423..2bc9c7c35 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,11 @@ VERSION_MAJOR="1" VERSION_MINOR="8" VERSION_PATCH="3" VERSION_EXTRA="-svn" -VERSION_BUILD="2792" +VERSION_BUILD="2800" # $Log$ # Changes since 1.8.3 Release +#Revision 2800 - Fixed a bug that would cause users access in channels to seemingly disappear. Introduced in release 1.8.3, revision 2667 #Revision 2792 - Documented /nickserv list's ability to accept ranges #Revision 2791 - Don't show unconfirmed nicks when services admins list suspended nicks #Revision 2787 - Fixed it so halfops can not be marked as forcibly deopped, fixes us sometimes undoing all modes by some halfops |