From c1232cef697946b9e96320604b6892cddd7eabfa Mon Sep 17 00:00:00 2001 From: tianshujie Date: Mon, 11 Apr 2022 10:49:00 +0800 Subject: [PATCH] * Fix bug #21633. --- module/story/control.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/story/control.php b/module/story/control.php index 056edfe336..e9fce3faf9 100644 --- a/module/story/control.php +++ b/module/story/control.php @@ -1153,6 +1153,8 @@ class story extends control $this->product->setMenu($story->product, $story->branch); } + if($product->type != 'normal') $this->lang->product->branch = sprintf($this->lang->product->branch, $this->lang->product->branchName[$product->type]); + $reviewers = $this->story->getReviewerPairs($storyID, $story->version); $reviewedBy = trim($story->reviewedBy, ','); $superReviewers = trim(zget($this->config->story, 'superReviewers', ''), ',');