fixed initialize
This commit is contained in:
parent
84a97f98ed
commit
18fc6b4aa6
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ class Doctrine_Pager
|
||||||
*/
|
*/
|
||||||
protected function initialize()
|
protected function initialize()
|
||||||
{
|
{
|
||||||
// etrieve the number of itens found
|
// retrieve the number of items found
|
||||||
$count = $this->getQuery()->offset(0)->limit(0)->count();
|
$count = $this->getQuery()->count();
|
||||||
$this->setNbResults($count);
|
$this->setNbResults($count);
|
||||||
|
|
||||||
$this->adjustOffset();
|
$this->adjustOffset();
|
||||||
|
|
Loading…
Add table
Reference in a new issue