This commit is contained in:
parent
5cd993cdcc
commit
0b819a2919
1 changed files with 2 additions and 2 deletions
|
@ -193,7 +193,7 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate
|
||||||
*/
|
*/
|
||||||
public function innerJoin($join)
|
public function innerJoin($join)
|
||||||
{
|
{
|
||||||
return $this->parseQueryPart('from', 'INNER JOIN ' . $join);
|
return $this->parseQueryPart('from', 'INNER JOIN ' . $join, true);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* leftJoin
|
* leftJoin
|
||||||
|
@ -204,7 +204,7 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate
|
||||||
*/
|
*/
|
||||||
public function leftJoin($join)
|
public function leftJoin($join)
|
||||||
{
|
{
|
||||||
return $this->parseQueryPart('from', 'LEFT JOIN ' . $join);
|
return $this->parseQueryPart('from', 'LEFT JOIN ' . $join, true);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* groupBy
|
* groupBy
|
||||||
|
|
Loading…
Add table
Reference in a new issue