diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-01-17 20:37:25 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-17 20:37:25 -0800 |
commit | f20fa2cfedc42f98a38a77d77186d180bd0c3426 (patch) | |
tree | b14c3797fc780e87c6615d404d51a348faf86825 /modules/gallery/helpers | |
parent | ab7be17b7fae9dbff42a77cb5eff85cf0c8d824d (diff) |
Change IdentityProvider::create_user() to take $email as well, since that's a required
parameter for the Gallery driver.
Diffstat (limited to 'modules/gallery/helpers')
-rw-r--r-- | modules/gallery/helpers/identity.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/helpers/identity.php b/modules/gallery/helpers/identity.php index eae0ea3e..ef93d72f 100644 --- a/modules/gallery/helpers/identity.php +++ b/modules/gallery/helpers/identity.php @@ -155,8 +155,8 @@ class identity_Core { /** * @see IdentityProvider_Driver::create_user. */ - static function create_user($name, $full_name, $password) { - return IdentityProvider::instance()->create_user($name, $full_name, $password); + static function create_user($name, $full_name, $password, $email) { + return IdentityProvider::instance()->create_user($name, $full_name, $password, $email); } /** |