v1.18.x
barisusakli 9 years ago
parent 777b9cb752
commit 40ebd66074

@ -42,8 +42,9 @@ Controllers.home = function(req, res, next) {
var hook = 'action:homepage.get:' + route; var hook = 'action:homepage.get:' + route;
if (plugins.hasListeners(hook)) { if (plugins.hasListeners(hook)) {
plugins.fireHook(hook, {req: req, res: res, next: next}); return plugins.fireHook(hook, {req: req, res: res, next: next});
} else { }
if (route === 'categories' || route === '/') { if (route === 'categories' || route === '/') {
Controllers.categories.list(req, res, next); Controllers.categories.list(req, res, next);
} else if (route === 'recent') { } else if (route === 'recent') {
@ -57,12 +58,11 @@ Controllers.home = function(req, res, next) {
req.params.topic_index = "1"; req.params.topic_index = "1";
req.params.category_id = match[1]; req.params.category_id = match[1];
req.params.slug = match[2]; req.params.slug = match[2];
Controllers.categories.get(req, res, next); Controllers.category.get(req, res, next);
} else { } else {
res.redirect(route); res.redirect(route);
} }
} }
}
}); });
}; };

Loading…
Cancel
Save