diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-29 12:12:22 -0700 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-29 12:12:22 -0700 |
| commit | 392e24e56b4afa0e8752fd740f613f5556955342 (patch) | |
| tree | 226107a1cef8ed3352ae3f02eba0a34c6b2ef118 /modules/gallery/helpers | |
| parent | 4bf247568415a48e2f64348905f2a39420bf9c9d (diff) | |
Correct the issues that identity::registered_users was calling the backend provider everybody method
Diffstat (limited to 'modules/gallery/helpers')
| -rw-r--r-- | modules/gallery/helpers/identity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/identity.php b/modules/gallery/helpers/identity.php index dd8c6c16..0111cb1a 100644 --- a/modules/gallery/helpers/identity.php +++ b/modules/gallery/helpers/identity.php @@ -197,7 +197,7 @@ class identity_Core { * @see IdentityProvider_Driver::registered_users. */ static function registered_users() { - return IdentityProvider::instance()->everybody(); + return IdentityProvider::instance()->registered_users(); } /** |
