MFB: Pass user's password to the signup_addextra hook.
authorJan Schneider <jan@horde.org>
Thu, 13 Aug 2009 16:00:32 +0000 (18:00 +0200)
committerJan Schneider <jan@horde.org>
Thu, 13 Aug 2009 16:00:32 +0000 (18:00 +0200)
framework/Auth/lib/Horde/Auth/Signup.php

index 6840eb7..47af223 100644 (file)
@@ -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) {}
         }
     }