mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-06-23 21:00:11 +02:00
added postcount to topic
This commit is contained in:
@@ -171,7 +171,9 @@ var async = require('async'),
|
||||
category.name = validator.escape(category.name);
|
||||
category.disabled = parseInt(category.disabled, 10) === 1;
|
||||
category.icon = category.icon || 'hidden';
|
||||
category.post_count = category.post_count || 0;
|
||||
if (category.hasOwnProperty('post_count')) {
|
||||
category.post_count = category.post_count || 0;
|
||||
}
|
||||
|
||||
if (category.description) {
|
||||
category.description = validator.escape(category.description);
|
||||
|
||||
@@ -105,7 +105,7 @@ module.exports = function(Posts) {
|
||||
};
|
||||
|
||||
function getTopicAndCategories(topicKeys, callback) {
|
||||
db.getObjectsFields(topicKeys, ['uid', 'tid', 'title', 'cid', 'slug', 'deleted'], function(err, topics) {
|
||||
db.getObjectsFields(topicKeys, ['uid', 'tid', 'title', 'cid', 'slug', 'deleted', 'postcount'], function(err, topics) {
|
||||
if (err) {
|
||||
return callback(err);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user