From 3d4bcd4099b5acef7f52a9c2df7cbbd7b7254b60 Mon Sep 17 00:00:00 2001 From: zYne Date: Thu, 24 May 2007 13:58:36 +0000 Subject: [PATCH] --- lib/Doctrine/Query/Abstract.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/Query/Abstract.php b/lib/Doctrine/Query/Abstract.php index a6fb40b43..1e6bc29d1 100644 --- a/lib/Doctrine/Query/Abstract.php +++ b/lib/Doctrine/Query/Abstract.php @@ -227,7 +227,12 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate */ public function where($where, $params = array()) { - $this->params = (array) $params; + $this->params = array(); + if (is_array($params)) { + $this->params = $params; + } else { + $this->params[] = $params; + } return $this->parseQueryPart('where', $where); } @@ -241,7 +246,12 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate */ public function having($having, $params = array()) { - $this->params = (array) $params; + $this->params = array(); + if (is_array($params)) { + $this->params = $params; + } else { + $this->params[] = $params; + } return $this->parseQueryPart('having', $having); }