* Fix productplan back link.

This commit is contained in:
孙广明
2021-09-14 10:06:11 +08:00
parent 9a72344c79
commit 6b53c5380b
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
<?php js::set('storyRecTotal', $storyPager->recTotal);?>
<div id='mainMenu' class='clearfix'>
<div class='btn-toolbar pull-left'>
<?php $browseLink = $this->session->productPlanList ? $this->session->productPlanList : inlink('browse', "planID=$plan->id");?>
<?php $browseLink = $this->session->productPlanList ? $this->session->productPlanList : inlink('browse', "planID=$plan->product");?>
<?php common::printBack($browseLink, 'btn btn-primary');?>
<div class='divider'></div>
<div class='page-title'>
+3 -1
View File
@@ -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());