summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-01-05 22:34:54 +0000
committerDries Buytaert <dries@buytaert.net>2008-01-05 22:34:54 +0000
commita67e33054c89c554e634eedcc3b0ba2135628351 (patch)
tree7928e153f4c48cd64fd75236b674733cd088507e
parent4f54a173cccc01982e0148f87958bd2027b5522e (diff)
downloadbrdo-a67e33054c89c554e634eedcc3b0ba2135628351.tar.gz
brdo-a67e33054c89c554e634eedcc3b0ba2135628351.tar.bz2
- Patch #206434 by meba: added missing doc in string.
-rw-r--r--modules/user/user.pages.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.pages.inc b/modules/user/user.pages.inc
index 03bcd0c10..0887a760e 100644
--- a/modules/user/user.pages.inc
+++ b/modules/user/user.pages.inc
@@ -105,7 +105,7 @@ function user_pass_reset(&$form_state, $uid, $timestamp, $hashed_pass, $action =
drupal_goto('user/'. $user->uid .'/edit');
}
else {
- $form['message'] = array('#value' => t('<p>This is a one-time login for %user_name and will expire on %expiration_date</p><p>Click on this button to login to the site and change your password.</p>', array('%user_name' => $account->name, '%expiration_date' => format_date($timestamp + $timeout))));
+ $form['message'] = array('#value' => t('<p>This is a one-time login for %user_name and will expire on %expiration_date.</p><p>Click on this button to login to the site and change your password.</p>', array('%user_name' => $account->name, '%expiration_date' => format_date($timestamp + $timeout))));
$form['help'] = array('#value' => '<p>'. t('This login can be used only once.') .'</p>');
$form['submit'] = array('#type' => 'submit', '#value' => t('Log in'));
$form['#action'] = url("user/reset/$uid/$timestamp/$hashed_pass/login");