mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-03 20:45:58 +01: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);
|
||||
|
||||
Reference in New Issue
Block a user