diff --git a/lib/Doctrine/ORM/LazyCriteriaCollection.php b/lib/Doctrine/ORM/LazyCriteriaCollection.php index 488ec9cc0..bb1219696 100644 --- a/lib/Doctrine/ORM/LazyCriteriaCollection.php +++ b/lib/Doctrine/ORM/LazyCriteriaCollection.php @@ -75,7 +75,7 @@ class LazyCriteriaCollection extends AbstractLazyCollection implements Selectabl } // Return cached result in case count query was already executed - if ($this->count) { + if ($this->count !== null) { return $this->count; }