fix first post loading when pagination is enabled

This commit is contained in:
barisusakli
2015-02-01 20:10:51 -05:00
parent cfcfc8e0b1
commit 6a837632fa
2 changed files with 8 additions and 11 deletions

View File

@@ -54,7 +54,7 @@ topicsController.get = function(req, res, next) {
var settings = results.settings;
var postCount = parseInt(results.topic.postcount, 10);
var pageCount = Math.ceil((postCount - 1) / settings.postsPerPage);
var pageCount = Math.max(1, Math.ceil((postCount - 1) / settings.postsPerPage));
if (utils.isNumber(req.params.post_index)) {
var url = '';