mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
* src/xml.erl: ' entity replaced by ' Should work more universaly (in HTML and XML).
SVN Revision: 721
This commit is contained in:
parent
a365f8cd2b
commit
78751e78c0
@ -1,3 +1,8 @@
|
||||
2007-02-04 Mickael Remond <mickael.remond@process-one.net>
|
||||
|
||||
* src/xml.erl: ' entity replaced by ' Should work more
|
||||
universaly (in HTML and XML).
|
||||
|
||||
2007-01-30 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/mod_roster_odbc.erl: Bugfix (thanks to asdx
|
||||
|
@ -111,7 +111,7 @@ crypt(S) when is_list(S) ->
|
||||
$< -> "<";
|
||||
$> -> ">";
|
||||
$" -> """;
|
||||
$' -> "'";
|
||||
$' -> "'";
|
||||
_ -> C
|
||||
end || C <- S];
|
||||
crypt(S) when is_binary(S) ->
|
||||
|
Loading…
Reference in New Issue
Block a user