* [bug#58007,done,0.2h] fix bug.
This commit is contained in:
@@ -1753,7 +1753,7 @@ class taskModel extends model
|
||||
$tasks = $this->dao->select('*')->from(TABLE_TASK)->alias('t1')->where($this->session->taskQueryCondition)
|
||||
->beginIF($this->post->exportType == 'selected')->andWhere('t1.id')->in($this->cookie->checkedItem)->fi()
|
||||
->orderBy($sort)
|
||||
->fetchAll('id');
|
||||
->fetchAll('id', false);
|
||||
|
||||
foreach($tasks as $key => $task)
|
||||
{
|
||||
|
||||
@@ -673,7 +673,7 @@ class transferModel extends model
|
||||
}
|
||||
$moduleDatas = $sql->where($queryCondition)
|
||||
->beginIF($this->post->exportType == 'selected')->andWhere('t1.id')->in($checkedItem)->fi()
|
||||
->fetchAll('id');
|
||||
->fetchAll('id', false);
|
||||
}
|
||||
elseif($queryCondition)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user