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:
parent
c1ba89c120
commit
c917c0f0eb
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue