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, []); return callback(err, []);
} }
plugins.fireHook('filter:categories.recent', { async.waterfall([
uid: uid, async.apply(privileges.posts.filter, 'read', pids, uid),
pids: pids function(pids, next) {
}, function(err, data) { posts.getPostSummaryByPids(pids, uid, {stripTags: true}, next);
posts.getPostSummaryByPids(data.pids, uid, {stripTags: true}, callback); }
}); ], callback);
}); });
}); });
}; };

Loading…
Cancel
Save