summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlezvous.ca>2008-06-22 10:20:15 -0400
committerEvan Prodromou <evan@controlezvous.ca>2008-06-22 10:20:15 -0400
commite69f28faab19f6f432a37b663aba4c75b836447c (patch)
treed6f0ef94b8cb3007270cf7ca9be917953ee261fa /actions
parent745a145f0dacc0ef04a43157887d322bf37225eb (diff)
add confirm email to profile settings
darcs-hash:20080622142015-34904-00feabce7fe73360319d8a9c1372478879bb203a.gz
Diffstat (limited to 'actions')
-rw-r--r--actions/profilesettings.php27
1 files changed, 24 insertions, 3 deletions
diff --git a/actions/profilesettings.php b/actions/profilesettings.php
index 75e3758ab..1b7c75d47 100644
--- a/actions/profilesettings.php
+++ b/actions/profilesettings.php
@@ -117,15 +117,35 @@ class ProfilesettingsAction extends SettingsAction {
$original = clone($user);
$user->nickname = $nickname;
- $user->email = $email;
$result = $user->update($original);
if (!$result) {
+ common_log_db_error($user, 'UPDATE', __FILE__);
common_server_error(_t('Couldnt update user.'));
return;
}
+ if ($email != $original->email) {
+
+ $confirm = new Confirm_email();
+ $confirm->code = common_good_rand(16);
+ $confirm->user_id = $user->id;
+ $confirm->email = $email;
+
+ $result = $confirm->insert();
+ if (!$result) {
+ common_log_db_error($confirm, 'INSERT', __FILE__);
+ common_server_error(_t('Couldnt confirm email.'));
+ return FALSE;
+ }
+ # XXX: try not to do this in the middle of a transaction
+
+ mail_confirm_address($confirm->code,
+ $profile->nickname,
+ $email);
+ }
+
$profile = $user->getProfile();
$orig_profile = clone($profile);
@@ -140,14 +160,15 @@ class ProfilesettingsAction extends SettingsAction {
$result = $profile->update($orig_profile);
if (!$result) {
+ common_log_db_error($profile, 'UPDATE', __FILE__);
common_server_error(_t('Couldnt save profile.'));
return;
}
+ $user->query('COMMIT');
+
common_broadcast_profile($profile);
- $user->query('COMMIT');
-
$this->show_form(_t('Settings saved.'), TRUE);
}