* fix move extensions to module
This commit is contained in:
@@ -3101,6 +3101,7 @@ class taskModel extends model
|
||||
if($id == 'deadline') $class .= ' text-center';
|
||||
if($id == 'deadline' and isset($task->delay)) $class .= ' delayed';
|
||||
if($id == 'assignedTo') $class .= ' has-btn text-left';
|
||||
if($id == 'lane') $class .= ' text-left';
|
||||
if(strpos('progress', $id) !== false) $class .= ' text-right';
|
||||
|
||||
$title = '';
|
||||
@@ -3182,6 +3183,9 @@ class taskModel extends model
|
||||
case 'assignedTo':
|
||||
$this->printAssignedHtml($task, $users);
|
||||
break;
|
||||
case 'lane':
|
||||
echo trim($task->lane);
|
||||
break;
|
||||
case 'assignedDate':
|
||||
echo substr($task->assignedDate, 5, 11);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user