1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 07:16:38 +02:00

Fixed a bug in UMODE causing anope to send an extra umode change as a channel mode change.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2397 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
jantje_85
2009-07-31 17:17:19 +00:00
parent a3afe44ca6
commit 113237964d
3 changed files with 3 additions and 3 deletions
+1
View File
@@ -4,6 +4,7 @@ Anope Version 1.8 SVN
Provided by Han` <Han@mefalcon.org> 2009
07/28 F Updated german language file. [ #00]
07/28 F Added german language support to hs_request.c. [ #00]
07/31 F Fixed anope sending umode change using channels' syntax. [ #00]
Anope Version 1.8.2
-------------------
-2
View File
@@ -101,8 +101,6 @@ int do_operumodes(User * u)
if (!(u2 = finduser(nick))) {
notice_lang(s_OperServ, u, NICK_X_NOT_IN_USE, nick);
} else {
anope_cmd_mode(s_OperServ, nick, "%s", modes);
common_svsmode(u2, modes, NULL);
notice_lang(s_OperServ, u, OPER_UMODE_SUCCESS, nick);
+2 -1
View File
@@ -9,9 +9,10 @@ VERSION_MAJOR="1"
VERSION_MINOR="8"
VERSION_PATCH="2"
VERSION_EXTRA="-svn"
VERSION_BUILD="2395"
VERSION_BUILD="2397"
# $Log$ # Changes since 1.8.2 Release
#Revision 2397 - Fixed a bug in UMODE causing anope to send an extra umode change as a channel mode change.
#Revision 2395 - Added german language support to hs_request.c. Patch provided by Han.
#Revision 2394 - Updated german language file. Update provided by Han.