* Finish task #55675.
This commit is contained in:
@@ -1726,11 +1726,7 @@ class kanban extends control
|
||||
->fi()
|
||||
->fetch();
|
||||
|
||||
if($groupBy and $groupBy != 'default')
|
||||
{
|
||||
$fromLaneID = $fromCell->lane;
|
||||
$toLaneID = $fromCell->lane;
|
||||
}
|
||||
if($groupBy and $groupBy != 'default') $fromLaneID = $toLaneID = $fromCell->lane;
|
||||
|
||||
$toCell = $this->dao->select('id, cards')->from(TABLE_KANBANCELL)
|
||||
->where('kanban')->eq($executionID)
|
||||
|
||||
@@ -3156,11 +3156,7 @@ class kanbanModel extends model
|
||||
->fi()
|
||||
->fetch();
|
||||
|
||||
if($groupBy and $groupBy != 'default')
|
||||
{
|
||||
$fromLaneID = $fromCell->lane;
|
||||
$toLaneID = $fromCell->lane;
|
||||
}
|
||||
if($groupBy and $groupBy != 'default') $fromLaneID = $toLaneID = $fromCell->lane;
|
||||
|
||||
$fromCellCards = $fromCell->cards;
|
||||
$toCell = $this->dao->select('*')->from(TABLE_KANBANCELL)->where('lane')->eq($toLaneID)->andWhere('`column`')->eq($toColID)->fetch();
|
||||
|
||||
Reference in New Issue
Block a user