1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 14:56:37 +02:00

BUILD : 1.7.8 (650) BUGS : 338 NOTES : Moved GlobalOnCycleUP again...

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@498 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-03-28 22:46:54 +00:00
parent cd1213e22f
commit 049a272fa4
2 changed files with 11 additions and 7 deletions
+6 -6
View File
@@ -128,6 +128,12 @@ Server *new_server(Server * uplink, const char *name, const char *desc,
if ((uplink == me_server) && !(flags & SERVER_JUPED))
serv_uplink = serv;
/* Write the StartGlobal */
if (GlobalOnCycle) {
if (GlobalOnCycleUP)
notice_server(s_GlobalNoticer, serv, "%s", GlobalOnCycleUP);
}
return serv;
}
@@ -338,12 +344,6 @@ 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="649"
VERSION_BUILD="650"
# $Log$
#
# BUILD : 1.7.8 (650)
# BUGS : 338
# NOTES : Moved GlobalOnCycleUP again...
#
# BUILD : 1.7.8 (649)
# BUGS : 336
# NOTES : Moved code for GlobalOnCycleUP to after the server has connected.