* src/mod_muc/mod_muc_log.erl: Added missed HTMLization in a

nickname change logging (thanks to Badlop)

SVN Revision: 896
This commit is contained in:
Alexey Shchepin 2007-08-29 13:17:03 +00:00
parent 52c10089aa
commit 90ff184472
2 changed files with 8 additions and 4 deletions

View File

@ -1,12 +1,17 @@
2007-08-29 Alexey Shchepin <alexey@process-one.net>
* src/mod_muc/mod_muc_log.erl: Added missed HTMLization in a
nickname change logging (thanks to Badlop)
2007-08-28 Mickael Remond <mremond@process-one.net>
* src/mod_muc/mod_muc_room.erl: Changed default max number of user
in a room to 200 (EJAB-248)
* src/mod_offline_odbc.erl: Implements quota for offline messages
in relational database (EJAB-314)
* src/odbc/odbc_queries.erl: Likewise
2007-08-28 Alexey Shchepin <alexey@process-one.net>
* doc/guide.tex: Described @HOST@ feature (thanks to Badlop)

View File

@ -3,7 +3,6 @@
%%% Author : Badlop
%%% Purpose : MUC room logging
%%% Created : 12 Mar 2006 by Alexey Shchepin <alexey@sevcom.net>
%%% Id : $Id$
%%%----------------------------------------------------------------------
-module(mod_muc_log).
@ -338,7 +337,7 @@ add_message_to_log(Nick1, Message, RoomJID, Opts, State) ->
[Nick, ?T("has been banned"), htmlize(Reason)]);
{nickchange, OldNick} ->
io_lib:format("<font class=\"mnc\">~s ~s ~s</font><br/>",
[OldNick, ?T("is now known as"), Nick]);
[htmlize(OldNick), ?T("is now known as"), Nick]);
{subject, T} ->
io_lib:format("<font class=\"msc\">~s~s~s</font><br/>",
[Nick, ?T(" has set the subject to: "), htmlize(T,NoFollow)]);