From 8298f778e73dd73cec6fa47dfae4bf7d4682a482 Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Thu, 9 Dec 2021 10:25:23 +0800 Subject: [PATCH] * Fix bug#17251. --- module/productplan/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/productplan/control.php b/module/productplan/control.php index 5a1721f66e..897c5199c7 100644 --- a/module/productplan/control.php +++ b/module/productplan/control.php @@ -298,7 +298,7 @@ class productplan extends control if($plan->parent == '-1') $this->view->childrenPlans = $this->productplan->getChildren($plan->id); $this->loadModel('datatable'); - $this->view->modulePairs = $this->loadModel('tree')->getOptionMenu($plan->product, 'story', 0, $plan->branch); + $this->view->modulePairs = $this->loadModel('tree')->getOptionMenu($plan->product, 'story', 0, 'all'); $this->view->title = "PLAN #$plan->id $plan->title/" . zget($products, $plan->product, ''); $this->view->position[] = $this->lang->productplan->view; $this->view->planStories = $planStories;