]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
output a message when we send the recovery email
authorEvan Prodromou <evan@controlezvous.ca>
Tue, 24 Jun 2008 21:58:26 +0000 (17:58 -0400)
committerEvan Prodromou <evan@controlezvous.ca>
Tue, 24 Jun 2008 21:58:26 +0000 (17:58 -0400)
darcs-hash:20080624215826-34904-045d8e8cc25195eb045d2a96a526a6d2a9f0c218.gz

actions/recoverpassword.php

index 66267e558abc151d82f17db15f45b0746444232b..8bcfa9755cd8ea85470a732922a111eea46e950e 100644 (file)
@@ -176,7 +176,7 @@ class RecoverpasswordAction extends Action {
                $body .= 'If it was you, and you want to confirm, use the URL below:';
                $body .= "\n\n";
                $body .= "\t".common_local_url('confirmaddress',
-                                                                  array('code' => $code));
+                                                                  array('code' => $confirm->code));
                $body .= "\n\n";
                $body .= 'If not, just ignore this message.';
                $body .= "\n\n";
@@ -185,7 +185,14 @@ class RecoverpasswordAction extends Action {
                $body .= common_config('site', 'name');
                $body .= "\n";
 
-               return mail_to_user($user, _t('Password recovery requested'), $body);
+               mail_to_user($user, _t('Password recovery requested'), $body);
+
+               common_show_header(_('Password recovery requested'));
+               common_element('p', NULL,
+                              _t('Instructions for recovering your password ' .
+                                 'have been sent to the email registered to your ' .
+                                 'account.'));
+               common_show_footer();
        }
 
        function reset_password() {