From 0b23c80ae81281d196c904bf42857bad907b53a4 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Thu, 13 Aug 2009 18:00:32 +0200 Subject: [PATCH] MFB: Pass user's password to the signup_addextra hook. --- framework/Auth/lib/Horde/Auth/Signup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {} } } -- 2.11.0