fix author field on topic feed #2872

v1.18.x
Barış Soner Uşaklı 10 years ago
parent 839dd72a05
commit e45e204ba5

@ -84,8 +84,8 @@ function generateForTopic(req, res, next) {
feed.item({ feed.item({
title: 'Reply to ' + topicData.title + ' on ' + dateStamp, title: 'Reply to ' + topicData.title + ' on ' + dateStamp,
description: postData.content, description: postData.content,
url: nconf.get('url') + '/topic/' + topicData.slug + '/' + postData.index, url: nconf.get('url') + '/topic/' + topicData.slug + (postData.index ? '/' + (postData.index + 1) : ''),
author: postData.username, author: postData.user ? postData.user.username : '',
date: dateStamp date: dateStamp
}); });
} }

Loading…
Cancel
Save