diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index eabb87a16d..6bf74e518c 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -864,7 +864,7 @@ function changeCardColType(cardID, fromColID, toColID, fromLaneID, toLaneID, car { if((fromColType == 'pause' || fromColType == 'canceled' || fromColType == 'closed' || fromColType == 'developed') && priv.canActivateTask) { - var link = createLink('task', 'activate', 'taskID=' + objectID + '&extra=fromColID=' + fromColID + ',toColID=' + toColID + ',fromLaneID=' + fromLaneID + ',toLaneID=' + toLaneID + ',regionID=' + regionID, '', true); + var link = createLink('task', 'restart', 'taskID=' + objectID, '', true); showIframe = true; } if(fromColType == 'wait' && priv.canStartTask) diff --git a/module/execution/js/taskkanban.js b/module/execution/js/taskkanban.js index 11562ba0ba..6a7c338d9d 100644 --- a/module/execution/js/taskkanban.js +++ b/module/execution/js/taskkanban.js @@ -575,7 +575,7 @@ function changeCardColType(cardID, fromColID, toColID, fromLaneID, toLaneID, car { if((fromColType == 'pause' || fromColType == 'canceled' || fromColType == 'closed' || fromColType == 'developed') && priv.canActivateTask) { - var link = createLink('task', 'activate', 'taskID=' + objectID, '', true); + var link = createLink('task', 'restart', 'taskID=' + objectID, '', true); showIframe = true; } if(fromColType == 'wait' && priv.canStartTask)