diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-01 08:18:53 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-01 08:18:53 +0000 |
commit | 5e70fc97ef829a5ca90c7c6e0cb6a4a7389c0336 (patch) | |
tree | b9c1ffdeaa21c2eba6d2cc58d08b035bd5693b0f | |
parent | 16986cb9f23d283a96a9faa64c435ec73c59b140 (diff) | |
download | brdo-5e70fc97ef829a5ca90c7c6e0cb6a4a7389c0336.tar.gz brdo-5e70fc97ef829a5ca90c7c6e0cb6a4a7389c0336.tar.bz2 |
- Patch #100352 by ChrisKennedy: fixed parse error on pasword reset page.
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index b00118d42..3e81adbb7 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1115,7 +1115,7 @@ function user_pass_reset($uid, $timestamp, $hashed_pass, $action = NULL) { } 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['help'] = array('#value' => '<p>'. t('This login can be used only once.')) .'</p>'; + $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"); return $form; |