Skip to content

Commit

Permalink
Blog post titles will now be properly escaped in rss (xml) feeds (reo…
Browse files Browse the repository at this point in the history
…pens #715)

Closes #2313
  • Loading branch information
knunery committed Mar 10, 2014
1 parent c1ba89c commit c917c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/server/controllers/frontend.js
Expand Up @@ -301,7 +301,7 @@ frontendControllers = {
posts.forEach(function (post) {
var deferred = when.defer(),
item = {
title: _.escape(post.title),
title: post.title,
guid: post.uuid,
url: config.urlFor('post', {post: post, permalinks: permalinks}, true),
date: post.published_at,
Expand Down

0 comments on commit c917c0f

Please sign in to comment.