diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-15 15:45:34 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-15 15:45:34 +0100 |
commit | 92a36ca8b81c48565e98204e1bfdd05a23ff8bbd (patch) | |
tree | 27453a8e359cebed59160e6b438fa20417694bd4 | |
parent | 1ef2ecd6e84321056f654e8634d8df5adbfb18d0 (diff) | |
download | nextcloud-server-92a36ca8b81c48565e98204e1bfdd05a23ff8bbd.tar.gz nextcloud-server-92a36ca8b81c48565e98204e1bfdd05a23ff8bbd.zip |
Join short comment lines
-rw-r--r-- | apps/user_ldap/lib/access.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 32910b6e252..901299e7c21 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -1054,10 +1054,8 @@ abstract class Access { $cookie = $this->getPagedResultCookie($base, $filter, $limit, $offset); if(empty($cookie) && ($offset > 0)) { - // no cookie known, although the offset - // is not 0. Maybe cache run out. We need - // to start all over *sigh* (btw, Dear - // Reader, did you need LDAP paged + // no cookie known, although the offset is not 0. Maybe cache run out. We need + // to start all over *sigh* (btw, Dear Reader, did you need LDAP paged // searching was designed by MSFT?) $reOffset = ($offset - $limit) < 0 ? 0 : $offset - $limit; //a bit recursive, $offset of 0 is the exit |