diff options
author | Alexey Shchepin <alexey@process-one.net> | 2006-09-09 23:34:51 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2006-09-09 23:34:51 +0000 |
commit | 3bb802a6508717ac66f744886d3d40bca3643ce8 (patch) | |
tree | d87f27526d56652fd681ef63dfa2039a167bb0f4 /src | |
parent | * src/mod_muc/mod_muc_log.erl: Fixed html special characters (diff) |
* src/mod_muc/mod_muc_log.erl: Fixed html special characters
escaping, added new image buttons, chatroom titles now point to
xmpp: URIs (thanks to Badlop)
* src/ejabberd_listener.erl: Bugfix
SVN Revision: 603
Diffstat (limited to 'src')
-rw-r--r-- | src/mod_muc/mod_muc_log.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_muc/mod_muc_log.erl b/src/mod_muc/mod_muc_log.erl index 15afd6350..1ba731e7c 100644 --- a/src/mod_muc/mod_muc_log.erl +++ b/src/mod_muc/mod_muc_log.erl @@ -658,7 +658,7 @@ htmlize2(S1) -> S3 = element(2, regexp:gsub(S2, "<", "\\<")), S4 = element(2, regexp:gsub(S3, ">", "\\>")), S5 = element(2, regexp:gsub(S4, "(http|ftp)://.[^ ]*", "<a href=\"&\">&</a>")), - S6. + S5. get_room_info(RoomJID, Opts) -> Title = |