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

* src/mod_muc/mod_muc_log.erl: Recognise more URI schemes in logged HTML (EJAB-279) (Thanks to qu1j0t3).

SVN Revision: 815
This commit is contained in:
Mickaël Rémond 2007-07-17 07:55:26 +00:00
parent 1b19d72e6f
commit 0b0c889bca
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2007-07-17 Mickael Remond <mickael.remond@process-one.net>
* src/mod_muc/mod_muc_log.erl: Recognise more URI schemes in
logged HTML (EJAB-279) (Thanks to qu1j0t3).
* src/ejabberd_s2s_out.erl: Improved place of the INFO /
DEBUG printout.

View File

@ -669,7 +669,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|ftp)://.[^ ]*", link_regexp(NoFollow))),
S5 = element(2, regexp:gsub(S4, "[-+.a-zA-Z0-9]+://[^] )\'\"}]+", link_regexp(NoFollow))),
%% Remove 'right-to-left override' unicode character 0x202e
element(2, regexp:gsub(S5, [226,128,174], "[RLO]")).