Commit 0b819a29 authored by zYne's avatar zYne

--no commit message

--no commit message
parent 5cd993cd
......@@ -193,7 +193,7 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate
*/
public function innerJoin($join)
{
return $this->parseQueryPart('from', 'INNER JOIN ' . $join);
return $this->parseQueryPart('from', 'INNER JOIN ' . $join, true);
}
/**
* leftJoin
......@@ -204,7 +204,7 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate
*/
public function leftJoin($join)
{
return $this->parseQueryPart('from', 'LEFT JOIN ' . $join);
return $this->parseQueryPart('from', 'LEFT JOIN ' . $join, true);
}
/**
* groupBy
......
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