1
0
mirror of synced 2024-12-13 06:46:03 +03:00

Fixed wrong call to _setExecuted in Pager

This commit is contained in:
guilhermeblanco 2008-01-17 15:01:07 +00:00
parent e5f2aa5208
commit 78edfd59a6

View File

@ -109,9 +109,9 @@ class Doctrine_Pager
$count = $this->getCountQuery()->count($this->getCountQueryParams($params)); $count = $this->getCountQuery()->count($this->getCountQueryParams($params));
$this->_setNumResults($count); $this->_setNumResults($count);
$this->_adjustOffset(); $this->_setExecuted(true);
$this->_setExecuted(true); $this->_adjustOffset();
} }