diff --git a/module/doc/control.php b/module/doc/control.php index 13798a9390..8974003aac 100755 --- a/module/doc/control.php +++ b/module/doc/control.php @@ -2284,7 +2284,7 @@ class doc extends control $this->view->orderBy = $orderBy; $this->view->recPerPage = $recPerPage; $this->view->pageID = $pageID; - $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 = $this->lang->doc->quick; $this->display(); }