From 5e70fc97ef829a5ca90c7c6e0cb6a4a7389c0336 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 1 Dec 2006 08:18:53 +0000 Subject: - Patch #100352 by ChrisKennedy: fixed parse error on pasword reset page. --- modules/user/user.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/user/user.module') 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('

This is a one-time login for %user_name and will expire on %expiration_date

Click on this button to login to the site and change your password.

', array('%user_name' => $account->name, '%expiration_date' => format_date($timestamp + $timeout)))); - $form['help'] = array('#value' => '

'. t('This login can be used only once.')) .'

'; + $form['help'] = array('#value' => '

'. t('This login can be used only once.') .'

'); $form['submit'] = array('#type' => 'submit', '#value' => t('Log in')); $form['#action'] = url("user/reset/$uid/$timestamp/$hashed_pass/login"); return $form; -- cgit v1.2.3