* change the method of get users.

This commit is contained in:
wangchunsheng
2009-11-12 08:48:08 +00:00
parent 4ce4275a65
commit 8d95c3d68b

View File

@@ -105,7 +105,7 @@ class group extends control
$group = $this->group->getById($groupID);
$groupUsers = $this->group->getUserPairs($groupID);
$groupUsers = join(',', array_keys($groupUsers));
$allUsers = $this->user->getPairs($this->app->company->id);
$allUsers = $this->user->getPairs($this->app->company->id, 'noclosed|noempty|noletter');
$header['title'] = $this->lang->admin->common . $this->lang->colon . $group->name . $this->lang->colon . $this->lang->group->manageMember;
$position[] = html::a($this->createLink('admin', 'browsegroup', "companyid={$this->app->company->id}"), $this->lang->admin->group);