removed the hook I just added: filter:category.recent, was a bit misleading.

v1.18.x
Julian Lam 10 years ago
parent 20ea40133b
commit 9debfd94ec

@ -26,12 +26,12 @@ module.exports = function(Categories) {
return callback(err, []);
}
plugins.fireHook('filter:categories.recent', {
uid: uid,
pids: pids
}, function(err, data) {
posts.getPostSummaryByPids(data.pids, uid, {stripTags: true}, callback);
});
async.waterfall([
async.apply(privileges.posts.filter, 'read', pids, uid),
function(pids, next) {
posts.getPostSummaryByPids(pids, uid, {stripTags: true}, next);
}
], callback);
});
});
};

Loading…
Cancel
Save