- myControl: remove unused personlData property.

This commit is contained in:
liugang
2023-12-11 14:56:56 +08:00
parent f620a37dd4
commit e31b069bbf
+4 -5
View File
@@ -1394,11 +1394,10 @@ EOF;
$user = $this->user->getById($this->app->user->account);
$this->view->title = $this->lang->my->common . $this->lang->colon . $this->lang->my->profile;
$this->view->user = $user;
$this->view->groups = $this->loadModel('group')->getByAccount($this->app->user->account);
$this->view->deptPath = $this->dept->getParents($user->dept);
$this->view->personalData = $this->user->getPersonalData();
$this->view->title = $this->lang->my->common . $this->lang->colon . $this->lang->my->profile;
$this->view->user = $user;
$this->view->groups = $this->loadModel('group')->getByAccount($this->app->user->account);
$this->view->deptPath = $this->dept->getParents($user->dept);
$this->display();
}