diff --git a/module/bug/control.php b/module/bug/control.php index 1d90edeafe..e9b55604d0 100644 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -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; diff --git a/module/execution/control.php b/module/execution/control.php index c8e3a05bc4..b1eca16588 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -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];