mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-13 01:03:35 +02:00
previous commit doesnt show unusud tags in admin
This commit is contained in:
@@ -148,7 +148,7 @@ function filterAndRenderCategories(req, res, next, active) {
|
||||
}
|
||||
|
||||
adminController.tags.get = function(req, res, next) {
|
||||
topics.getTags(0, 99, function(err, tags) {
|
||||
topics.getTags(0, 199, function(err, tags) {
|
||||
if (err) {
|
||||
return next(err);
|
||||
}
|
||||
|
||||
@@ -49,7 +49,7 @@ tagsController.getTag = function(req, res, next) {
|
||||
};
|
||||
|
||||
tagsController.getTags = function(req, res, next) {
|
||||
topics.getTags(0, 100, function(err, tags) {
|
||||
topics.getTags(0, 99, function(err, tags) {
|
||||
if (err) {
|
||||
return next(err);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user