Merge pull request #4823 from MegaGM/issue-4822

closes #4822
This commit is contained in:
Barış Soner Uşaklı
2016-07-05 07:20:28 +03:00
committed by GitHub

View File

@@ -118,6 +118,7 @@ module.exports = function(Posts) {
var cids = topics.map(function(topic) {
if (topic) {
topic.title = validator.escape(topic.title);
topic.deleted = parseInt(topic.deleted, 10) === 1;
}
return topic && topic.cid;
}).filter(function(topic, index, array) {
@@ -145,4 +146,4 @@ module.exports = function(Posts) {
}
return content;
}
};
};