diff options
author | ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b <ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-02 18:25:59 +0000 |
---|---|---|
committer | ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b <ribosome ribosome@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-02 18:25:59 +0000 |
commit | 3e9e166cd46b30bce1ff567c00d43dc2af38b8b1 (patch) | |
tree | e4b4b28a1f888a0ef33fe8a59fe52b2b7d070ddc | |
parent | 3f81431ca1159b68dd7a9a67d0d422957ae1b3f2 (diff) |
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
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | actions.c | 2 | ||||
-rw-r--r-- | memoserv.c | 3 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 10 insertions, 3 deletions
@@ -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]); diff --git a/memoserv.c b/memoserv.c index 04bac6fee..889a0759e 100644 --- a/memoserv.c +++ b/memoserv.c @@ -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) */ diff --git a/version.log b/version.log index e7aee7347..94f16ee3a 100644 --- a/version.log +++ b/version.log @@ -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 # |