From 55550a5819ecc06b975efdcf21fcb39f446f6919 Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Thu, 4 Jan 2024 15:41:52 +0800 Subject: [PATCH] * Fix bug#42465. --- module/block/ui/assigntomeblock.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/block/ui/assigntomeblock.html.php b/module/block/ui/assigntomeblock.html.php index 88b92f970f..cb52d1d3b1 100644 --- a/module/block/ui/assigntomeblock.html.php +++ b/module/block/ui/assigntomeblock.html.php @@ -88,7 +88,7 @@ foreach($hasViewPriv as $type => $bool) $typeName = ''; if(isset($lang->{$review->type}->common)) $typeName = $lang->{$review->type}->common; - if($reviewType == 'story') $typeName = $lang->SRCommon; + if($reviewType == 'story') $typeName = $review->storyType == 'story' ? $lang->SRCommon : $lang->URCommon; if(isset($lang->$reviewType->statusList)) $statusList = array_merge($statusList, $lang->$reviewType->statusList); if($reviewType == 'attend') $statusList = array_merge($statusList, $lang->attend->reviewStatusList);