previous commit doesnt show unusud tags in admin

This commit is contained in:
barisusakli
2014-11-13 14:36:44 -05:00
parent 68e8039ac7
commit a45858dacd
3 changed files with 4 additions and 4 deletions

View File

@@ -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);
}

View File

@@ -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);
}