From cd39390968d7e87912c07d6b24ba75433bad3471 Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Fri, 25 Mar 2022 09:17:06 +0800 Subject: [PATCH] * Fix bug #19745. --- module/dev/config.php | 2 +- module/story/lang/en.php | 1 + module/story/lang/zh-cn.php | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/module/dev/config.php b/module/dev/config.php index dea5424e27..bc190ea7f6 100644 --- a/module/dev/config.php +++ b/module/dev/config.php @@ -126,7 +126,7 @@ $config->dev->postParams['story']['create']['module'] = 'int'; $config->dev->postParams['story']['create']['plan'] = 'int'; $config->dev->postParams['story']['create']['source'] = 'string'; $config->dev->postParams['story']['create']['sourceNote'] = 'string'; -$config->dev->postParams['story']['create']['reviewedBy'] = 'string'; +$config->dev->postParams['story']['create']['reviewer'] = 'array'; $config->dev->postParams['story']['create']['needNotReview'] = 'string'; $config->dev->postParams['story']['create']['pri'] = 'string'; $config->dev->postParams['story']['create']['estimate'] = 'date'; diff --git a/module/story/lang/en.php b/module/story/lang/en.php index 9d1396a86a..d6e1c723cc 100644 --- a/module/story/lang/en.php +++ b/module/story/lang/en.php @@ -124,6 +124,7 @@ $lang->story->closedDate = 'ClosedDate'; $lang->story->closedReason = 'Reason'; $lang->story->rejectedReason = 'Reject Reason'; $lang->story->reviewedBy = 'ReviewedBy'; +$lang->story->reviewer = $lang->story->reviewedBy; $lang->story->reviewers = 'Reviewers'; $lang->story->reviewedDate = 'ReviewedDate'; $lang->story->activatedDate = 'Activated Date'; diff --git a/module/story/lang/zh-cn.php b/module/story/lang/zh-cn.php index f63137b362..29d7a86098 100644 --- a/module/story/lang/zh-cn.php +++ b/module/story/lang/zh-cn.php @@ -124,6 +124,7 @@ $lang->story->closedDate = '关闭日期'; $lang->story->closedReason = '关闭原因'; $lang->story->rejectedReason = '拒绝原因'; $lang->story->reviewedBy = '由谁评审'; +$lang->story->reviewer = $lang->story->reviewedBy; $lang->story->reviewers = '评审人员'; $lang->story->reviewedDate = '评审时间'; $lang->story->activatedDate = '激活日期';