diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/xml.erl | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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 diff --git a/src/xml.erl b/src/xml.erl index 888618867..5689f30d1 100644 --- a/src/xml.erl +++ b/src/xml.erl @@ -111,7 +111,7 @@ crypt(S) when is_list(S) -> $< -> "<"; $> -> ">"; $" -> """; - $' -> "'"; + $' -> "'"; _ -> C end || C <- S]; crypt(S) when is_binary(S) -> |