From a0ab0cc444deafc04d997c43afadf3822caf62a6 Mon Sep 17 00:00:00 2001 From: gRoussac Date: Wed, 13 Feb 2013 11:03:59 +0100 Subject: [PATCH] [-] FO : Fix bug #PSCFV-7467 no email in post data --- themes/default/password.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/default/password.tpl b/themes/default/password.tpl index 2907784fd..fa2d0a51a 100644 --- a/themes/default/password.tpl +++ b/themes/default/password.tpl @@ -31,9 +31,9 @@ {include file="$tpl_dir./errors.tpl"} {if isset($confirmation) && $confirmation == 1} -

{l s='Your password has been successfully reset and a confirmation has been sent to your email address:'} {$smarty.post.email|escape:'htmlall':'UTF-8'|stripslashes}

+

{l s='Your password has been successfully reset and a confirmation has been sent to your email address:'} {if isset($email)}{$email|escape:'htmlall':'UTF-8'|stripslashes}{/if}

{elseif isset($confirmation) && $confirmation == 2} -

{l s='A confirmation email has been sent to your address:'} {$smarty.post.email|escape:'htmlall':'UTF-8'|stripslashes}

+

{l s='A confirmation email has been sent to your address:'} {if isset($email)}{$email|escape:'htmlall':'UTF-8'|stripslashes}{/if}

{else}

{l s='Please enter the email address you used to register. We will then send you a new password. '}