From 90caff0be0fbcc6d8a65c9904fdf165ed8102885 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Fri, 7 Apr 2023 09:55:44 +0800 Subject: [PATCH] * Remove Kanban when creating the execution document library. --- module/doc/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/doc/control.php b/module/doc/control.php index 603d4fee04..5f6fb672cd 100755 --- a/module/doc/control.php +++ b/module/doc/control.php @@ -163,10 +163,10 @@ class doc extends control } } - if($type == 'execution') $objects = $this->execution->getPairs(0, 'all', 'multiple,leaf,noprefix'); if($type == 'execution') { + $objects = $this->execution->getPairs(0, 'sprint,stage', 'multiple,leaf,noprefix'); $execution = $this->execution->getByID($objectID); if($execution->type == 'stage') $this->lang->doc->execution = str_replace($this->lang->executionCommon, $this->lang->project->stage, $this->lang->doc->execution); }