* adjust for data.

This commit is contained in:
wangyidong
2022-05-18 11:11:11 +08:00
parent 9dedd40457
commit e9289b68d5
+4 -3
View File
@@ -2204,9 +2204,10 @@ class execution extends control
}
$userList = $this->dao->select('account, realname, avatar')->from(TABLE_USER)->where('deleted')->eq(0)->fetchAll('account');
$userList['closed']['account'] = 'Closed';
$userList['closed']['realname'] = 'Closed';
$userList['closed']['avatar'] = '';
$userList['closed'] = new stdclass();
$userList['closed']->account = 'Closed';
$userList['closed']->realname = 'Closed';
$userList['closed']->avatar = '';
$this->view->title = $this->lang->execution->kanban;
$this->view->realnames = $this->loadModel('user')->getPairs('noletter');