From 44101abceb50dd9d78f093a4bf198c71ebe6da57 Mon Sep 17 00:00:00 2001 From: gyim Date: Thu, 19 Apr 2007 14:16:04 +0000 Subject: [PATCH] FIX: Doctrine_Query::count() prevented execute() calls on the same query object --- lib/Doctrine/Query.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index 9bfe99b9d..0ccfd0c41 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -376,6 +376,8 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { */ public function count($params = array()) { + $parts_old = $this->parts; + $this->remove('select'); $join = $this->join; $where = $this->where; @@ -408,6 +410,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { $params = array_merge($this->params, $params); + $this->parts = $parts_old; return (int) $this->getConnection()->fetchOne($q, $params); } /**