Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
listUsers() doesn't take parameters in remoteAuthDriver
Browse files Browse the repository at this point in the history
Signed-off-by: Etienne CHAMPETIER <etienne.champetier@fiducial.net>
  • Loading branch information
Etienne CHAMPETIER committed Dec 2, 2013
1 parent a2654f5 commit 3a6063d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/plugins/auth.remote/class.remoteAuthDriver.php
Expand Up @@ -124,9 +124,9 @@ public function listUsers()
return $users;
}

public function listUsersPaginated($baseGroup = "/", $regexp, $offset = -1 , $limit = -1)
public function listUsersPaginated($baseGroup, $regexp, $offset = -1 , $limit = -1)
{
$users = $this->listUsers($baseGroup);
$users = $this->listUsers();
$result = array();
$index = 0;
foreach ($users as $usr => $pass) {
Expand Down

0 comments on commit 3a6063d

Please sign in to comment.