- session->productPlanList ? $this->session->productPlanList : inlink('browse', "planID=$plan->id");?>
+ session->productPlanList ? $this->session->productPlanList : inlink('browse', "planID=$plan->product");?>
diff --git a/module/program/control.php b/module/program/control.php
index 794166e07d..b19d657347 100644
--- a/module/program/control.php
+++ b/module/program/control.php
@@ -76,7 +76,9 @@ class program extends control
public function kanban()
{
$this->app->loadLang('release');
- $this->app->session->set('projectList', $this->app->getURI(true), 'project');
+
+ $this->session->set('projectList', $this->app->getURI(true), 'project');
+ $this->session->set('productPlanList', $this->app->getURI(true), 'product');
$this->view->title = $this->lang->program->kanban->common;
$this->view->kanbanGroup = array_filter($this->program->getKanbanGroup());