From bf2e40e67d33e0017d33bc7adb540f1a5b3727d1 Mon Sep 17 00:00:00 2001 From: Yagami <976204163@qq.com> Date: Mon, 3 Jun 2019 10:00:14 +0800 Subject: [PATCH] * Finish task #5716. --- module/project/control.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/project/control.php b/module/project/control.php index 7d5fa23f71..0bb9a40e8b 100644 --- a/module/project/control.php +++ b/module/project/control.php @@ -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;