summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers/identity.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-01-17 20:37:25 -0800
committerBharat Mediratta <bharat@menalto.com>2010-01-17 20:37:25 -0800
commitf20fa2cfedc42f98a38a77d77186d180bd0c3426 (patch)
treeb14c3797fc780e87c6615d404d51a348faf86825 /modules/gallery/helpers/identity.php
parentab7be17b7fae9dbff42a77cb5eff85cf0c8d824d (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/identity.php')
-rw-r--r--modules/gallery/helpers/identity.php4
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);
}
/**