* Fix bug for RD Kanban.

This commit is contained in:
liumengyi
2022-01-13 16:06:41 +08:00
parent 5d40963b8a
commit 6c1754423c
2 changed files with 0 additions and 10 deletions
-1
View File
@@ -739,7 +739,6 @@ class bug extends control
}
$projectID = $this->lang->navGroup->bug == 'project' ? $this->session->project : (isset($execution) ? $execution->project : 0);
a($projectID);
$this->view->customFields = $customFields;
$this->view->showFields = $showFields;
-9
View File
@@ -1979,13 +1979,6 @@ class execution extends control
$kanbanData = $this->loadModel('kanban')->getRDKanban($executionID, $browseType, $orderBy, $groupBy);
$executionActions = array();
/* Save to session. */
$uri = $this->app->getURI(true);
$this->app->session->set('taskList', $uri, 'execution');
$this->app->session->set('bugList', $uri, 'qa');
$this->app->session->set('kanbanType', $browseType, 'execution');
$this->app->session->set('kanbanGroupBy' . $browseType, $groupBy, 'execution');
foreach($this->config->execution->statusActions as $action)
{
if($this->execution->isClickable($execution, $action)) $executionActions[] = $action;
@@ -2735,8 +2728,6 @@ class execution extends control
$this->view->position[] = html::a($browseLink, $object->name);
$this->view->position[] = $this->lang->execution->linkStory;
a($allStories);
$this->view->object = $object;
$this->view->products = $products;
$this->view->allStories = empty($allStories) ? $allStories : $allStories[$pageID - 1];