From 641d381dd445edaa5e8802cb770e79f650f9d59a Mon Sep 17 00:00:00 2001 From: tianshujie Date: Mon, 6 Nov 2023 08:54:33 +0800 Subject: [PATCH] - Remove unused variable. --- module/group/control.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/module/group/control.php b/module/group/control.php index 879ce32133..d0dd2b90f5 100644 --- a/module/group/control.php +++ b/module/group/control.php @@ -327,9 +327,7 @@ class group extends control $group = $this->group->getById($groupID); $groupUsers = $this->dao->select('t1.account, t2.realname')->from(TABLE_PROJECTADMIN)->alias('t1')->leftJoin(TABLE_USER)->alias('t2')->on('t1.account = t2.account')->fetchPairs(); - $this->view->title = $this->lang->company->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->manageMember; - $this->view->position = $position; $this->view->allUsers = $groupUsers + $this->loadModel('dept')->getDeptUserPairs($deptID); $this->view->groupID = $groupID; $this->view->deptID = $deptID;