From 47c271d9f6ac613fa8c0ec929aa413d44484b8a0 Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Thu, 30 Dec 2021 16:40:53 +0800 Subject: [PATCH] *Fix Closed name bug. --- module/execution/control.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/execution/control.php b/module/execution/control.php index 48533e8425..ce12f38cfa 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -2010,8 +2010,8 @@ class execution extends control } $userList = $this->dao->select('account, realname name, avatar')->from(TABLE_USER)->where('deleted')->eq(0)->fetchAll('account'); - $userList['closed']['account'] = 'closed'; - $userList['closed']['name'] = 'closed'; + $userList['closed']['account'] = 'Closed'; + $userList['closed']['name'] = 'Closed'; $userList['closed']['avatar'] = ''; $this->view->title = $this->lang->execution->kanban;