diff options
author | Jimmy Praet <jimmy.praet@telenet.be> | 2021-09-12 15:02:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-12 21:02:07 +0800 |
commit | aac7f68af1a145fc772c018ed98f34b1af34b637 (patch) | |
tree | 4c9c534f27a3bcbc19c0f19c7b3c11dec708722e /templates | |
parent | 77b95fd766ac92c46ed5e1754ab9c32ee4bc7347 (diff) | |
download | gitea-aac7f68af1a145fc772c018ed98f34b1af34b637.tar.gz gitea-aac7f68af1a145fc772c018ed98f34b1af34b637.zip |
Fix reset password email template (#17025)
Removed unused variable passed to mail.link_not_working_do_paste
Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/mail/auth/reset_passwd.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/mail/auth/reset_passwd.tmpl b/templates/mail/auth/reset_passwd.tmpl index 2a85abc6c5..7cab33bf4e 100644 --- a/templates/mail/auth/reset_passwd.tmpl +++ b/templates/mail/auth/reset_passwd.tmpl @@ -9,7 +9,7 @@ <body> <p>{{.i18n.Tr "mail.hi_user_x" .DisplayName | Str2html}}</p><br> <p>{{.i18n.Tr "mail.reset_password.text" .ResetPwdCodeLives | Str2html}}</p><p><a href="{{$recover_url}}">{{$recover_url}}</a></p><br> - <p>{{.i18n.Tr "mail.link_not_working_do_paste" .DisplayName AppName | Str2html}}</p> + <p>{{.i18n.Tr "mail.link_not_working_do_paste"}}</p> <p>© <a target="_blank" rel="noopener noreferrer" href="{{AppUrl}}">{{AppName}}</a></p> </body> |