diff options
-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. |