mirror of
https://github.com/anope/anope.git
synced 2026-06-28 06:16:37 +02:00
BUILD : 1.7.18 (1221) BUGS : 659 NOTES : Fixed a mistake in the MySQL code with identifying services roots
git-svn-id: svn://svn.anope.org/anope/trunk@1221 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@940 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
0b74a48e20
commit
69196c40e5
@@ -6,6 +6,7 @@ Anope Version S V N
|
||||
01/02 F ChanServ LIST now searches for '#chan' if only 'chan' is given. [#622]
|
||||
01/06 F Missing backtick in SQL query for saving news items. [ #00]
|
||||
01/06 F Some OperServ commands not respecting OSOpersOnly when disabled. [#657]
|
||||
01/06 F MySQL code not always reporting Services Root flags correctly. [#659]
|
||||
|
||||
Anope Version 1.7.18
|
||||
--------------------
|
||||
|
||||
+1
-1
@@ -1853,7 +1853,7 @@ int db_mysql_load_ns_dbase(void)
|
||||
/* Make sure the SERVICES_ROOT flag is only set for services roots */
|
||||
na->nc->flags &= ~NI_SERVICES_ROOT;
|
||||
for (i = 0; i < RootNumber; i++) {
|
||||
if (stricmp(ServicesRoots[i], na->nick))
|
||||
if (stricmp(ServicesRoots[i], na->nick) == 0)
|
||||
na->nc->flags |= NI_SERVICES_ROOT;
|
||||
}
|
||||
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="18"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="1220"
|
||||
VERSION_BUILD="1221"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.18 (1221)
|
||||
# BUGS : 659
|
||||
# NOTES : Fixed a mistake in the MySQL code with identifying services roots
|
||||
#
|
||||
# BUILD : 1.7.18 (1220)
|
||||
# BUGS : 657
|
||||
# NOTES : Fixed various OperServ commands which did not respect a disabled OSOpersOnly
|
||||
|
||||
Reference in New Issue
Block a user