24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-14 22:00:16 +02:00

* src/mod_muc/mod_muc_log.erl: Linkify also xmpp:..., as it was

done previously (thanks to Konstantin Khomoutov)(EJAB-850)

SVN Revision: 2020
This commit is contained in:
Badlop 2009-04-14 18:25:58 +00:00
parent 0770e0eee4
commit 1dad64a1cc
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-04-14 Badlop <badlop@process-one.net>
* src/mod_muc/mod_muc_log.erl: Linkify also xmpp:..., as it was
done previously (thanks to Konstantin Khomoutov)(EJAB-850)
2009-04-10 Christophe Romain <christophe.romain@process-one.net>
* src/mod_caps.erl: Better handling of presence hook and caps clean

View File

@ -752,7 +752,7 @@ htmlize2(S1, NoFollow) ->
S2 = element(2, regexp:gsub(S1, "\\&", "\\&amp;")),
S3 = element(2, regexp:gsub(S2, "<", "\\&lt;")),
S4 = element(2, regexp:gsub(S3, ">", "\\&gt;")),
S5 = element(2, regexp:gsub(S4, "(http|https|ftp|mailto|xmpp)://[^] )\'\"}]+",
S5 = element(2, regexp:gsub(S4, "((http|https|ftp)://|(mailto|xmpp):)[^] )\'\"}]+",
link_regexp(NoFollow))),
%% Remove 'right-to-left override' unicode character 0x202e
element(2, regexp:gsub(S5, [226,128,174], "[RLO]")).