summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/recoverpassword.php4
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');
}
}