diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/email/save.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/actions/email/save.php b/actions/email/save.php index 34fce3c30..bf573fede 100644 --- a/actions/email/save.php +++ b/actions/email/save.php @@ -2,10 +2,8 @@ /** * Action for saving a new email address for a user and triggering a confirmation. * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ + * @package Elgg.Core + * @subpackage Administration.Users */ gatekeeper(); @@ -31,7 +29,6 @@ if ($user) { $user->email = $email; if ($user->save()) { - request_user_validation($user->getGUID()); system_message(elgg_echo('email:save:success')); } else { register_error(elgg_echo('email:save:fail')); |