diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2004-04-29 22:39:55 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2004-04-29 22:39:55 +0000 |
commit | 7e017fce0f0bb407455f1823479da510517c10e6 (patch) | |
tree | 5dfe64c783b353072fb2ecbcca29eb851e90142d /modules/profile.module | |
parent | 297c552c7e2100ccda1120c69d80a39612f37f14 (diff) | |
download | brdo-7e017fce0f0bb407455f1823479da510517c10e6.tar.gz brdo-7e017fce0f0bb407455f1823479da510517c10e6.tar.bz2 |
- Applied patch #6552: Put back register_form and register_validate callbacks in user.module.
- Fixed bug #7406: User delete hook incorrect params.
Diffstat (limited to 'modules/profile.module')
-rw-r--r-- | modules/profile.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile.module b/modules/profile.module index 2f1f91c94..29a528cff 100644 --- a/modules/profile.module +++ b/modules/profile.module @@ -202,7 +202,7 @@ function profile_user($type, $edit, &$user) { return profile_save_profile($edit, $user); case 'view': return profile_view_profile($user); - case 'edit': + case 'form': return profile_edit_profile($edit, $user); case 'validate': return profile_validate_profile($edit); |