aboutsummaryrefslogtreecommitdiff
path: root/lib/xml_builder.ex
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-05-07 19:28:23 +0200
committerRoger Braun <roger@rogerbraun.net>2017-05-07 19:28:23 +0200
commitb403ea4d2b69cef4434ad68babdfb402d8227847 (patch)
treed07607b3387c89f4310881132a9e10a5389a5439 /lib/xml_builder.ex
parenta9b2ad17596d1b6deca646239a95e94dc644ebf3 (diff)
parent60b4b0d725aefdca3eedd2d7708b0c96ee60c5f4 (diff)
downloadpleroma-b403ea4d2b69cef4434ad68babdfb402d8227847.tar.gz
Merge branch 'develop' into dtluna/pleroma-feature/unfollow-activity
Diffstat (limited to 'lib/xml_builder.ex')
-rw-r--r--lib/xml_builder.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xml_builder.ex b/lib/xml_builder.ex
index ac1ac8a74..c6d144903 100644
--- a/lib/xml_builder.ex
+++ b/lib/xml_builder.ex
@@ -30,13 +30,13 @@ defmodule Pleroma.XmlBuilder do
NaiveDateTime.to_iso8601(time)
end
- def to_doc(content), do: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" <> to_xml(content)
+ def to_doc(content), do: ~s(<?xml version="1.0" encoding="UTF-8"?>) <> to_xml(content)
defp make_open_tag(tag, attributes) do
attributes_string = for {attribute, value} <- attributes do
"#{attribute}=\"#{value}\""
end |> Enum.join(" ")
- Enum.join([tag, attributes_string], " ") |> String.strip
+ [tag, attributes_string] |> Enum.join(" ") |> String.strip
end
end