From: Arthur Schiwon Date: Wed, 1 Oct 2014 09:55:53 +0000 (+0200) Subject: make scrutinizer happy, very minor changes X-Git-Tag: v8.0.0alpha1~539^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6c502e11f8a199bfbcda833efb2e16497895ae42;p=nextcloud-server.git make scrutinizer happy, very minor changes --- diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 68641b7a298..159b0d73000 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -97,7 +97,7 @@ class Access extends LDAPUtility implements user\IUserTools { $this->abandonPagedSearch(); // openLDAP requires that we init a new Paged Search. Not needed by AD, // but does not hurt either. - $this->initPagedSearch($filter, array($dn), $attr, 1, 0); + $this->initPagedSearch($filter, array($dn), array($attr), 1, 0); $dn = $this->DNasBaseParameter($dn); $rr = @$this->ldap->read($cr, $dn, $filter, array($attr)); if(!$this->ldap->isResource($rr)) { diff --git a/apps/user_ldap/lib/ildapwrapper.php b/apps/user_ldap/lib/ildapwrapper.php index 590f6d7ac7a..a64bcd6b95b 100644 --- a/apps/user_ldap/lib/ildapwrapper.php +++ b/apps/user_ldap/lib/ildapwrapper.php @@ -51,7 +51,7 @@ interface ILDAPWrapper { * @param resource $link LDAP link resource * @param int $pageSize number of results per page * @param bool $isCritical Indicates whether the pagination is critical of not. - * @param array $cookie structure sent by LDAP server + * @param string $cookie structure sent by LDAP server * @return bool true on success, false otherwise */ public function controlPagedResult($link, $pageSize, $isCritical, $cookie);