1
0
mirror of synced 2025-02-20 22:23:14 +03:00

fixed a bug in Doctrine_Query_Abstract::set(). Missing return value.

This commit is contained in:
romanb 2007-10-04 15:06:46 +00:00
parent 225b904aa7
commit 72b2911761

View File

@ -214,6 +214,7 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate
foreach ($key as $k => $v) {
$this->set($k, '?', array($v));
}
return $this;
} else {
if ($params !== null) {
if (is_array($params)) {