Skip to content

Commit

Permalink
Fix XML escaping bug (reported by @phrozen77).
Browse files Browse the repository at this point in the history
  • Loading branch information
SadieCat committed Apr 16, 2012
1 parent e728d07 commit a1ba380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atom.xml
Expand Up @@ -13,7 +13,7 @@ layout: nil
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<title>{{ post.title | xml_escape }}</title>
<link href="{{ site.info.uri }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.info.uri }}{{ post.id }}</id>
Expand Down

0 comments on commit a1ba380

Please sign in to comment.