* Fix error variable name.

This commit is contained in:
chenfeiCF
2018-11-12 17:41:30 +08:00
parent b960442999
commit c30ce17efc
+1 -1
View File
@@ -542,7 +542,7 @@ class taskModel extends model
if(($oldTask->assignedTo != $currentTask->assignedTo or $currentTask->status == 'done')
and isset($team[$this->app->user->account]) and $team[$this->app->user->account]->left == 0
and strpos($oldTask->finishedLis, ",{$this->app->user->account},") === false)
and strpos($oldTask->finishedList, ",{$this->app->user->account},") === false)
{
$currentTask->finishedList = ',' . trim(trim($oldTask->finishedList, ',') . ",{$this->app->user->account}", ',') . ',';
}