Commit b3915b8a authored by pookey's avatar pookey

fixing typo

parent 2c3b8bab
......@@ -519,7 +519,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
switch(strtolower($this->connection->getName())) {
case 'mysql':
// mysql doesn't support LIMIT in subqueries
$list = $this->conn->execute($subquery, $params)->fetchAll(PDO::FETCH_COLUMN);
$list = $this->connection->execute($subquery, $params)->fetchAll(PDO::FETCH_COLUMN);
$subquery = implode(', ', $list);
break;
case 'pgsql':
......
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