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

BUILD : 1.7.8 (639) BUGS : NOTES : Some more fixing of the topic stuff to get it to work better with UnrealIRCd

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@487 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2005-03-22 11:53:27 +00:00
parent 2489bd7551
commit f005ab7da5
2 changed files with 8 additions and 6 deletions
+3 -5
View File
@@ -841,7 +841,8 @@ void do_sjoin(const char *source, int ac, char **av)
cumodes, 1);
}
if (c->ci && (!serv || is_sync(serv)))
if (c->ci && (!serv || is_sync(serv))
&& !c->topic_sync)
restore_topic(c->name);
chan_set_correct_modes(user, c);
}
@@ -916,8 +917,6 @@ void do_sjoin(const char *source, int ac, char **av)
cumodes, 1);
}
if (c->ci && (!serv || is_sync(serv)))
restore_topic(c->name);
chan_set_correct_modes(user, c);
}
}
@@ -989,8 +988,6 @@ void do_sjoin(const char *source, int ac, char **av)
cumodes, 1);
}
if (c->ci && (!serv || is_sync(serv)))
restore_topic(c->name);
chan_set_correct_modes(user, c);
}
}
@@ -1403,6 +1400,7 @@ Channel *chan_create(char *chan)
stick_all(c->ci);
c->topic_sync = 0;
} else {
restore_topic(chan);
c->topic_sync = 1;
}
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="8"
VERSION_BUILD="638"
VERSION_BUILD="639"
# $Log$
#
# BUILD : 1.7.8 (639)
# BUGS :
# NOTES : Some more fixing of the topic stuff to get it to work better with UnrealIRCd
#
# BUILD : 1.7.8 (638)
# BUGS :
# NOTES : Accidently left 2 lines too much while fixing the topics being re-set on sync, causing them to be re-set on every normal join sent via SJOIN