From 3436438f0e233b621c76ed49e733cb64884ac1e1 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Tue, 29 Jul 2025 08:43:24 +0000 Subject: [PATCH] * [misc] modify users to quick. --- module/doc/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }