From ab9242bb591bb12b92a7c303ec902983ef7973d6 Mon Sep 17 00:00:00 2001 From: Yagami Date: Sun, 14 May 2023 14:53:35 +0800 Subject: [PATCH] * Fix bug #34955. --- module/product/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/product/model.php b/module/product/model.php index a6dd0a578a..2294f7fc48 100755 --- a/module/product/model.php +++ b/module/product/model.php @@ -1117,8 +1117,8 @@ class productModel extends model if($browseType == 'activestory') $stories = $this->story->getByStatus($productID, $branch, $modules, 'active', $type, $sort, $pager); if($browseType == 'changingstory') $stories = $this->story->getByStatus($productID, $branch, $modules, 'changing', $type, $sort, $pager); if($browseType == 'reviewingstory') $stories = $this->story->getByStatus($productID, $branch, $modules, 'reviewing', $type, $sort, $pager); - if($browseType == 'passedstory') $stories = $this->story->getByStatus($productID, $branch, $modules, 'passed', $type, $sort, $pager); if($browseType == 'launchedstory') $stories = $this->story->getByStatus($productID, $branch, $modules, 'launched', $type, $sort, $pager); + if($browseType == 'developingstory')$stories = $this->story->getByStatus($productID, $branch, $modules, 'developing', $type, $sort, $pager); if($browseType == 'willclose') $stories = $this->story->get2BeClosed($productID, $branch, $modules, $type, $sort, $pager); if($browseType == 'closedstory') $stories = $this->story->getByStatus($productID, $branch, $modules, 'closed', $type, $sort, $pager); if($browseType == 'assignedbyme') $stories = $this->story->getByAssignedBy($productID, $branch, $modules, $this->app->user->account, $type, $sort, $pager);