1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 09:16:37 +02:00

BUILD : 1.7.8 (649) BUGS : 336 NOTES : Moved code for GlobalOnCycleUP to after the server has connected.

git-svn-id: svn://svn.anope.org/anope/trunk@649 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@497 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-03-28 16:44:20 +00:00
parent b58eb5f7f2
commit cd1213e22f
4 changed files with 12 additions and 7 deletions
+1
View File
@@ -10,6 +10,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005
02/13 A Internal Event support, see EVENTS in the doc folder for help [ #00]
02/05 A Support for Unreal 3.2 +I channel mode. [ #00]
02/03 A Merged anope-win32 branch into the main, now Win32 ready. [ #00]
03/28 F Moved where GlobalOnCycleUP is located so it now works. [#336]
03/28 F Fixed the change display name function to update correct db table.[#337]
03/28 F Changed the ultimate3 usermode for SRA. [#326]
03/28 F Segfault on joining unregistered channels in some cases. [#327]
-6
View File
@@ -725,12 +725,6 @@ int init(int ac, char **av)
**/
modules_delayed_init();
/* Write the StartGlobal */
if (GlobalOnCycle) {
if (GlobalOnCycleUP)
oper_global(NULL, "%s", GlobalOnCycleUP);
}
/* Success! */
return 0;
}
+6
View File
@@ -338,6 +338,12 @@ void do_server(const char *source, char *servername, char *hops,
new_server(s, servername, descript, 0, numeric);
send_event(EVENT_SERVER_CONNECT, servername);
/* Write the StartGlobal */
if (GlobalOnCycle) {
if (GlobalOnCycleUP)
server_global(s, GlobalOnCycleUP);
}
}
/*************************************************************************/
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="8"
VERSION_BUILD="648"
VERSION_BUILD="649"
# $Log$
#
# BUILD : 1.7.8 (649)
# BUGS : 336
# NOTES : Moved code for GlobalOnCycleUP to after the server has connected.
#
# BUILD : 1.7.8 (648)
# BUGS : 337
# NOTES : Fixed the db query for anope_cs_akicks in display name change function.