* [bug#64365,done,0.2h] fix bug.

This commit is contained in:
sunguangming
2025-08-06 15:22:13 +08:00
committed by tianshujie
parent fe7de39038
commit 1fde2bbc2f
+1 -1
View File
@@ -2255,7 +2255,7 @@ class doc extends control
$this->view->objectType = $type;
$this->view->noSpace = $noSpace;
$this->view->objectID = $spaceID;
$this->view->users = $this->loadModel('user')->getPairs('noclosed,noletter');
$this->view->users = $this->dao->select('account,realname,avatar')->from(TABLE_USER)->where('deleted')->eq('0')->fetchAll('account');
$this->view->title = isset($this->lang->doc->spaceList[$type]) ? $this->lang->doc->spaceList[$type] : $this->lang->doc->common;
$this->display();
}