From: Jan Schneider Date: Thu, 13 Aug 2009 16:00:32 +0000 (+0200) Subject: MFB: Pass user's password to the signup_addextra hook. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0b23c80ae81281d196c904bf42857bad907b53a4;p=horde.git MFB: Pass user's password to the signup_addextra hook. --- diff --git a/framework/Auth/lib/Horde/Auth/Signup.php b/framework/Auth/lib/Horde/Auth/Signup.php index 6840eb7bd..47af22347 100644 --- a/framework/Auth/lib/Horde/Auth/Signup.php +++ b/framework/Auth/lib/Horde/Auth/Signup.php @@ -76,7 +76,7 @@ class Horde_Auth_Signup // Attempt to add/update any extra data handed in. if (!empty($info['extra'])) { try { - Horde::callHook('signup_addextra', array($info['user_name'], $info['extra'])); + Horde::callHook('signup_addextra', array($info['user_name'], $info['extra'], $info['password'])); } catch (Horde_Exception_HookNotSet $e) {} } }