]> source.dussan.org Git - nextcloud-server.git/commitdiff
make scrutinizer happy, very minor changes
authorArthur Schiwon <blizzz@owncloud.com>
Wed, 1 Oct 2014 09:55:53 +0000 (11:55 +0200)
committerArthur Schiwon <blizzz@owncloud.com>
Wed, 1 Oct 2014 09:55:53 +0000 (11:55 +0200)
apps/user_ldap/lib/access.php
apps/user_ldap/lib/ildapwrapper.php

index 68641b7a2989f1a6e6c119076f80cd44d17a98fa..159b0d7300041e7c1e384d9a468fd8d0399a7137 100644 (file)
@@ -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)) {
index 590f6d7ac7abedf96315fd9b87d5324441868ff9..a64bcd6b95bf15cf9f6e7c226116067498d73b61 100644 (file)
@@ -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);