From d6c727dcc12174ebc4ccefb0d63ffd4f5151213e Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Fri, 16 May 2014 14:03:20 -0400 Subject: [PATCH] Update LazyCriteriaCollection.php Fixed issue where count = 0 --- lib/Doctrine/ORM/LazyCriteriaCollection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }