diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-01-05 21:30:29 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-01-05 21:30:29 +0000 |
commit | 3daf76ca8c24840633e225b268fbd2146fd73d96 (patch) | |
tree | 2031a79f7599a5815ffdeeb2cdbf428587508dd1 | |
parent | b9854dad63729e0314a95bb351da2502648bfa6c (diff) |
BUILD : 1.7.20 (1334) BUGS : NOTES : Fixed insp11 not parsing +q correctly in FJOIN
git-svn-id: svn://svn.anope.org/anope/trunk@1334 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1050 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/protocol/inspircd11.c | 3 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 3 deletions
@@ -3,6 +3,7 @@ Anope Version S V N 12/30 F Grouped root nicks could result in loss of power when using MySQL.[#812] 01/01 F Databases not being saved on quit caused by connection error. [#811] 01/05 F Re-idenficiation after netsplit on InspIRCd. [#817] +01/05 F Founder channelmode (+q) not correctly parsed in FJOIN. [ #00] Provided by Trystan <trystan@nomadirc.net> - 2008 01/04 F Detection of Windows Vista and Windows Server 2008. [#815] diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 664eb9204..ec3b1a835 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -196,9 +196,8 @@ char myCsmodes[128] = { 0, 0, 0, 0, 'h', /* (37) % Channel halfops */ - 0, - 0, 0, 0, 'q', + 0, 0, 0, 0, 'v', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, diff --git a/version.log b/version.log index d7f81b7cf..9d21fb196 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="20" VERSION_EXTRA="-svn" -VERSION_BUILD="1333" +VERSION_BUILD="1334" # $Log$ # +# BUILD : 1.7.20 (1334) +# BUGS : +# NOTES : Fixed insp11 not parsing +q correctly in FJOIN +# # BUILD : 1.7.20 (1333) # BUGS : 817 # NOTES : Fixed users not being re-identified automatically after a netsplit on insp |