diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-10-04 19:25:54 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-10-04 19:25:54 -0400 |
commit | a43d24b1b85f0dcc5faf29cc6cf432a3a3c02249 (patch) | |
tree | f770614cadcaa067163c75b0f90968f9e26871d7 /actions/recoverpassword.php | |
parent | 9308d9177ea9f75477b493828ce7d90b767c5754 (diff) |
better instructions in the password recovery page
darcs-hash:20081004232554-5ed1f-06b3464638a6dbd6d4090afafa600578ad151b39.gz
Diffstat (limited to 'actions/recoverpassword.php')
-rw-r--r-- | actions/recoverpassword.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index c9813bcd0..38c42f41d 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -136,11 +136,13 @@ class RecoverpasswordAction extends Action { if ($msg) { common_element('div', 'error', $msg); } else { - common_element('div', 'instructions', + common_element_start('div', 'instructions'); + common_element('p', NULL, _('If you\'ve forgotten or lost your' . ' password, you can get a new one sent to' . ' the email address you have stored ' . ' in your account.')); + common_element_end('div'); } } |