*Fix Closed name bug.

This commit is contained in:
songchenxuan
2021-12-30 16:40:53 +08:00
parent 6fb1888e8a
commit 47c271d9f6
+2 -2
View File
@@ -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;