Skip to content

Commit

Permalink
Correct the issues that identity::registered_users was calling the ba…
Browse files Browse the repository at this point in the history
…ckend provider everybody method
  • Loading branch information
Tim Almdal committed Oct 29, 2009
1 parent 4bf2475 commit 392e24e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/gallery/helpers/identity.php
Expand Up @@ -197,7 +197,7 @@ static function everybody() {
* @see IdentityProvider_Driver::registered_users.
*/
static function registered_users() {
return IdentityProvider::instance()->everybody();
return IdentityProvider::instance()->registered_users();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion modules/gallery/libraries/IdentityProvider.php
Expand Up @@ -160,7 +160,7 @@ public function everybody() {
* @see IdentityProvider_Driver::registered_users.
*/
public function registered_users() {
return $this->driver->everybody();
return $this->driver->registered_users();
}

/**
Expand Down

0 comments on commit 392e24e

Please sign in to comment.