From 068f97bc3840b89d1ffc3a248a86fe982f2bf3df Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 24 Apr 2024 13:18:34 +0800 Subject: [PATCH] * Fix bug #48308, set control of stage. --- lib/zin/wg/storybasicinfo/v1.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/zin/wg/storybasicinfo/v1.php b/lib/zin/wg/storybasicinfo/v1.php index 2f1d21f7ec..dbe551c103 100644 --- a/lib/zin/wg/storybasicinfo/v1.php +++ b/lib/zin/wg/storybasicinfo/v1.php @@ -136,8 +136,9 @@ class storyBasicInfo extends wg { $items[$lang->story->stage] = array ( - 'class' => 'stage-line', - 'text' => zget($lang->story->stageList, $this->getMinStage($story, $branches), '') + 'control' => 'text', + 'class' => 'stage-line', + 'text' => zget($lang->story->stageList, $this->getMinStage($story, $branches), '') ); } $items[$lang->story->category] = zget($lang->story->categoryList, $story->category);