Child categories no longer show up on homepage, re: #2080

v1.18.x
Julian Lam 11 years ago
parent 6e21b7a830
commit 84d4035597

@ -69,6 +69,11 @@ Controllers.home = function(req, res, next) {
return next(err);
}
// Remove child categories, as they don't belong on the home page
categoryData = categoryData.filter(function(categoryObj) {
return !categoryObj.parent;
});
categories.getRecentTopicReplies(categoryData, uid, function(err) {
next(err, categoryData);
});

Loading…
Cancel
Save