bug fix #219: when archive last poched links from a page, redirect to an other page

This commit is contained in:
Nicolas Lœuillet 2013-10-03 14:46:46 +02:00
parent 7f17a38d35
commit 34d67c835e
1 changed files with 6 additions and 0 deletions

View File

@ -407,6 +407,12 @@ class Poche
'page_links' => '',
'nb_results' => '',
);
# want to display a page too far?
if ((count($entries) % PAGINATION) + 1 < $_GET['p']) {
Tools::redirect('');
}
if (count($entries) > 0) {
$this->pagination->set_total(count($entries));
$page_links = $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . '&');