diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-03-30 19:55:43 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-03-30 19:55:43 +0000 |
commit | 15d01b86682e5af4ff1ad3a709680740cb5e37fe (patch) | |
tree | 2af628b2c97992981f6128b2275f4b571a178f18 | |
parent | 751b278a9a2c6fbd0f0279922dc9d8a321815faf (diff) |
BUILD : 1.7.0 (11) BUGS : NOTES : Added channelname to entrymsgs
git-svn-id: svn://svn.anope.org/anope/trunk@11 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@6 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | channels.c | 4 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,6 @@ Anope Version 1.7.0 -------------------- Provided by Anope Dev. <dev@anope.org> +2004/03/30 Added channelname to entrymsg 2004/03/28 Fixed tables.sql and removed needless tables. 2004/03/28 Forked 1.7 development stream. diff --git a/channels.c b/channels.c index 0a26e3428..94b165f79 100644 --- a/channels.c +++ b/channels.c @@ -1268,8 +1268,10 @@ static void chan_adduser2(User * user, Channel * c) } } + /* Added channelname to entrymsg - 30.03.2004, Certus */ if (c->ci && c->ci->entry_message) - notice_user(whosends(c->ci), user, "%s", c->ci->entry_message); + notice_user(whosends(c->ci), user, "[%s] %s", c->name, + c->ci->entry_message); if (s_BotServ && c->ci && c->ci->bi) { if (c->usercount == BSMinUsers) diff --git a/version.log b/version.log index bc57c61e4..c475f37b6 100644 --- a/version.log +++ b/version.log @@ -8,11 +8,15 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="0" -VERSION_BUILD="8" +VERSION_BUILD="11" VERSION_EXTRA="" # $Log$ # +# BUILD : 1.7.0 (11) +# BUGS : +# NOTES : Added channelname to entrymsgs +# # BUILD : 1.7.0 (8) # BUGS : none. # NOTES : Made svn://zero.org/repos/anope/trunk the 1.7 development stream. |