* Finish task #5716.

This commit is contained in:
Yagami
2019-06-03 10:00:14 +08:00
parent 608cf1bab8
commit bf2e40e67d
+2 -2
View File
@@ -1668,9 +1668,9 @@ class project extends control
$productPairs = $this->loadModel('product')->getProductsByProject($projectID);
if($productPairs) $productID = key($productPairs);
$this->view->title = $this->lang->project->kanban;
$this->view->title = $this->lang->project->storyKanban;
$this->view->position[] = html::a($this->createLink('project', 'story', "projectID=$projectID"), $project->name);
$this->view->position[] = $this->lang->project->kanban;
$this->view->position[] = $this->lang->project->storyKanban;
$this->view->stories = $this->story->getKanbanGroupData($stories);
$this->view->realnames = $this->loadModel('user')->getPairs('noletter');
$this->view->projectID = $projectID;