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()); + ); }