From 85e26cfd7ba7d81acd0644f702263e2e1b5bb3a3 Mon Sep 17 00:00:00 2001 From: guilhermeblanco Date: Thu, 21 Feb 2008 04:15:13 +0000 Subject: [PATCH] Fixed method getNextPage that was always returning the last page in all branches --- lib/Doctrine/Pager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Pager.php b/lib/Doctrine/Pager.php index aff9e6743..4493be0a2 100644 --- a/lib/Doctrine/Pager.php +++ b/lib/Doctrine/Pager.php @@ -270,12 +270,12 @@ class Doctrine_Pager public function getNextPage() { if ($this->getExecuted()) { - return $this->_lastPage; + return min($this->getPage() + 1, $this->getLastPage()); } throw new Doctrine_Pager_Exception( 'Cannot retrieve the last page number of a not yet executed Pager query' - );return min($this->getPage() + 1, $this->getLastPage()); + ); }