diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-24 18:03:35 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-24 18:03:35 -0400 |
commit | bb3c796c25f989b529af0e985faa857689e0b25f (patch) | |
tree | d8fb5160d7a858197f0dcfca43cd1a09356f013b /actions | |
parent | 589a6c05f7dda6e365298fb0854700a94853bb1a (diff) |
url for confirmation email is better, fancy url
darcs-hash:20080624220335-34904-2c4089bf6d1b37b6f613ce89c6fad104727e7487.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/recoverpassword.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index 8bcfa9755..4d1dd6f44 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -175,7 +175,7 @@ class RecoverpasswordAction extends Action { $body .= "\n\n"; $body .= 'If it was you, and you want to confirm, use the URL below:'; $body .= "\n\n"; - $body .= "\t".common_local_url('confirmaddress', + $body .= "\t".common_local_url('recoverpassword', array('code' => $confirm->code)); $body .= "\n\n"; $body .= 'If not, just ignore this message.'; @@ -190,7 +190,7 @@ class RecoverpasswordAction extends Action { 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 ' . + 'have been sent to the email address registered to your ' . 'account.')); common_show_footer(); } |