Commit 9d73048b by Qiang Xue

Fixes #1791.

parent daf6c81f
......@@ -249,9 +249,15 @@ class ActiveQuery extends Query implements ActiveQueryInterface
if (!empty($with)) {
foreach ($with as $name => $value) {
if (is_integer($name)) {
if (in_array($value, $this->with, true)) {
$this->with[] = $value;
}
} elseif (!isset($this->with[$name])) {
$this->with[$name] = $value;
}
}
}
return $this;
}
......
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