Commit 72b29117 authored by romanb's avatar romanb

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

parent 225b904a
......@@ -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)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment