mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
* src/mod_muc/mod_muc_log.erl: Remove 'right-to-left override'
unicode character (thanks to Badlop) SVN Revision: 701
This commit is contained in:
parent
56f01cfe6e
commit
827fb3d8e0
@ -1,3 +1,8 @@
|
||||
2007-01-05 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/mod_muc/mod_muc_log.erl: Remove 'right-to-left override'
|
||||
unicode character (thanks to Badlop)
|
||||
|
||||
2006-12-31 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/ejabberd_s2s_out.erl: Bugfix
|
||||
|
@ -658,7 +658,8 @@ 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>")),
|
||||
S5.
|
||||
%% Remove 'right-to-left override' unicode character 0x202e
|
||||
element(2, regexp:gsub(S5, [226,128,174], "[RLO]")).
|
||||
|
||||
get_room_info(RoomJID, Opts) ->
|
||||
Title =
|
||||
|
Loading…
Reference in New Issue
Block a user