mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -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) {
|
posts.forEach(function (post) {
|
||||||
var deferred = when.defer(),
|
var deferred = when.defer(),
|
||||||
item = {
|
item = {
|
||||||
title: _.escape(post.title),
|
title: post.title,
|
||||||
guid: post.uuid,
|
guid: post.uuid,
|
||||||
url: config.urlFor('post', {post: post, permalinks: permalinks}, true),
|
url: config.urlFor('post', {post: post, permalinks: permalinks}, true),
|
||||||
date: post.published_at,
|
date: post.published_at,
|
||||||
|
|
Loading…
Add table
Reference in a new issue