* Replace leftjoin to leftJoin.
This commit is contained in:
@@ -1507,7 +1507,7 @@ class taskModel extends model
|
||||
{
|
||||
$tasks = $this->dao->select('t1.id, t1.name, t2.name as executionName')
|
||||
->from(TABLE_TASK)->alias('t1')
|
||||
->leftjoin(TABLE_PROJECT)->alias('t2')->on('t1.execution = t2.id')
|
||||
->leftJoin(TABLE_PROJECT)->alias('t2')->on('t1.execution = t2.id')
|
||||
->where('t1.assignedTo')->eq($account)
|
||||
->andWhere('t1.deleted')->eq(0)
|
||||
->andWhere('t2.deleted')->eq(0)
|
||||
|
||||
Reference in New Issue
Block a user