0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Blog post titles will now be properly escaped in rss (xml) feeds (reopens #715)

Closes #2313
This commit is contained in:
Kyle Nunery 2014-03-10 11:42:38 -04:00
parent c1ba89c120
commit c917c0f0eb

View file

@ -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,