From 169b8fa8adbfc4e062424d74da0f6a619f403892 Mon Sep 17 00:00:00 2001 From: zhouxin Date: Fri, 19 Jul 2024 15:25:13 +0800 Subject: [PATCH] * [bug#52736,done,0.5h] fix dtable name in drill result. --- module/pivot/config.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/module/pivot/config.php b/module/pivot/config.php index 51aaf76fbf..ab6d1d4910 100644 --- a/module/pivot/config.php +++ b/module/pivot/config.php @@ -172,8 +172,9 @@ $config->pivot->objectTableFields->ticket['openedBy']['title'] = $lang->ticket-> $config->pivot->objectTableFields->ticket['openedBy']['type'] = 'user'; $config->pivot->objectTableFields->story = array(); -$config->pivot->objectTableFields->story['title']['title'] = $lang->pivot->drill->storyName; -$config->pivot->objectTableFields->story['title']['link'] = array('url' => helper::createLink('{type}', 'view', 'storyID={id}'), 'target' => '_blank'); +$config->pivot->objectTableFields->story['title']['title'] = $lang->pivot->drill->storyName; +$config->pivot->objectTableFields->story['title']['link'] = array('url' => helper::createLink('{type}', 'view', 'storyID={id}'), 'target' => '_blank'); +$config->pivot->objectTableFields->story['reviewer']['name'] = 'reviewedBy'; $config->pivot->objectTableFields->testcase = array(); $config->pivot->objectTableFields->testcase['id']['name'] = 'id';