fix pagination going to 404 if new post creates a new page

v1.18.x
barisusakli 10 years ago
parent 10680d47b0
commit 4f38a33702

@ -72,7 +72,7 @@ var async = require('async'),
return callback(err);
}
callback(null, Math.ceil(parseInt(postCount, 10) / settings.postsPerPage));
callback(null, Math.ceil((parseInt(postCount, 10) - 1) / settings.postsPerPage));
});
});
};

Loading…
Cancel
Save