mirror of
https://github.com/anope/anope.git
synced 2026-06-12 19:14:47 +02:00
BUILD : 1.7.3 (162) BUGS : 79 NOTES : Fixed bug 79 (memoserv set notify not working) also fixed a blocker bug in actions.c
git-svn-id: svn://svn.anope.org/anope/trunk@162 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@111 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
3f81431ca1
commit
3e9e166cd4
@@ -1,6 +1,8 @@
|
||||
Anope Version S V N
|
||||
-------------------
|
||||
Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
06/02 F Fixed bug where people who set memoserv notify off were notified [ #79]
|
||||
06/02 F Fixed blocker bug in actions.c preventing compile
|
||||
05/28 F Fixed botserv bug with HAS_EXCEPTION (chmode +e)
|
||||
05/27 A Better /OS MODLIST output to include version information. [ #74]
|
||||
05/25 A New /CS CLEAR HOPS for ircd's that support halfops. [ #72]
|
||||
|
||||
@@ -85,7 +85,7 @@ void kill_user(const char *source, const char *user, const char *reason)
|
||||
snprintf(buf, sizeof(buf), "%s (%s)", source, reason);
|
||||
av[0] = sstrdup(user);
|
||||
av[1] = buf;
|
||||
send_cmd(ServerName, "SVSKILL %s :%s", u2->nick, reason);
|
||||
/* send_cmd(ServerName, "SVSKILL %s :%s", user, reason); */
|
||||
send_cmd(source, "KILL %s :%s", user, av[1]);
|
||||
do_kill(source, 2, av);
|
||||
free(av[0]);
|
||||
|
||||
+2
-1
@@ -353,7 +353,8 @@ void memo_send(User * u, char *name, char *text, int z)
|
||||
s_MemoServ, m->number);
|
||||
}
|
||||
} else {
|
||||
if ((u = finduser(name)) && nick_identified(u))
|
||||
if ((u = finduser(name)) && nick_identified(u)
|
||||
&& (nc->flags & NI_MEMO_RECEIVE))
|
||||
notice_lang(s_MemoServ, u, MEMO_NEW_MEMO_ARRIVED,
|
||||
source, s_MemoServ, m->number);
|
||||
} /* if (flags & MEMO_RECEIVE) */
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="3"
|
||||
VERSION_BUILD="161"
|
||||
VERSION_BUILD="162"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.3 (162)
|
||||
# BUGS : 79
|
||||
# NOTES : Fixed bug 79 (memoserv set notify not working) also fixed a blocker bug in actions.c
|
||||
#
|
||||
# BUILD : 1.7.3 (161)
|
||||
# NOTES : Fixed cut/paste error on mydbgen
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user