make ?page=[numbers] links work for users with pagination disabled. remove ?page when updating the URL for infinite scroll

This commit is contained in:
Ben Lubar
2016-07-17 15:47:58 -05:00
parent 7b855cd418
commit 85e42aee6e
2 changed files with 4 additions and 2 deletions

View File

@@ -97,7 +97,9 @@ topicsController.get = function(req, res, callback) {
req.params.post_index = 0;
}
if (!settings.usePagination) {
currentPage = 1;
if (req.params.post_index !== 0) {
currentPage = 1;
}
if (reverse) {
postIndex = Math.max(0, postCount - (req.params.post_index || postCount) - Math.ceil(settings.postsPerPage / 2));
} else {