24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-30 23:02:00 +02:00

Fix broken JPEG photo (EJAB-1526)

Conflicts:

	src/eldap/eldap_filter.erl
This commit is contained in:
Evgeniy Khramtsov 2012-12-12 18:08:08 +10:00
parent 38d2a27c56
commit e1f8233d08

View File

@ -185,5 +185,6 @@ replace_amps(Bin) ->
list_to_binary(
lists:flatmap(
fun($&) -> "\\&";
($\\) -> "\\\\";
(Chr) -> [Chr]
end, binary_to_list(Bin))).