25
1
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:
Mickaël Rémond 2007-02-04 11:30:44 +00:00
parent a365f8cd2b
commit 78751e78c0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-02-04 Mickael Remond <mickael.remond@process-one.net>
* src/xml.erl: &apos; entity replaced by &#39; 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

View File

@ -111,7 +111,7 @@ crypt(S) when is_list(S) ->
$< -> "&lt;";
$> -> "&gt;";
$" -> "&quot;";
$' -> "&apos;";
$' -> "&#39;";
_ -> C
end || C <- S];
crypt(S) when is_binary(S) ->