This commit is contained in:
Arthur Schiwon 2015-01-28 23:57:04 +01:00
parent 31de757514
commit 953a88785b
1 changed files with 4 additions and 4 deletions

View File

@ -251,7 +251,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface {
/** /**
* returns a filter for a "users in primary group" search or count operation * returns a filter for a "users in primary group" search or count operation
* *
* @param $groupDN * @param string $groupDN
* @param string $search * @param string $search
* @return string * @return string
* @throws \Exception * @throws \Exception
@ -281,7 +281,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface {
* @param string $search * @param string $search
* @param int $limit * @param int $limit
* @param int $offset * @param int $offset
* @return \string[] * @return string[]
*/ */
public function getUsersInPrimaryGroup($groupDN, $search = '', $limit = -1, $offset = 0) { public function getUsersInPrimaryGroup($groupDN, $search = '', $limit = -1, $offset = 0) {
try { try {
@ -300,7 +300,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface {
/** /**
* returns the number of users that have the given group as primary group * returns the number of users that have the given group as primary group
* *
* @param $groupDN * @param string $groupDN
* @param string $search * @param string $search
* @param int $limit * @param int $limit
* @param int $offset * @param int $offset
@ -310,7 +310,7 @@ class GROUP_LDAP extends BackendUtility implements \OCP\GroupInterface {
try { try {
$filter = $this->prepareFilterForUsersInPrimaryGroup($groupDN, $search); $filter = $this->prepareFilterForUsersInPrimaryGroup($groupDN, $search);
$users = $this->access->countUsers($filter, array('dn'), $limit, $offset); $users = $this->access->countUsers($filter, array('dn'), $limit, $offset);
return (is_int($users)) ? $users : 0; return (int)$users;
} catch (\Exception $e) { } catch (\Exception $e) {
return 0; return 0;
} }