diff options
author | gerv%gerv.net <> | 2002-04-26 15:46:16 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-04-26 15:46:16 +0200 |
commit | 6808892ba82eb158ec62ee204cd1832a1d261de2 (patch) | |
tree | 6cd88e77f29dbbf7d897c84a7df3fb3e6e2ae5bf /Bugzilla | |
parent | 3321a21580047a12832f47e16220c2c3ee0c7d1b (diff) | |
download | bugzilla-6808892ba82eb158ec62ee204cd1832a1d261de2.tar.gz bugzilla-6808892ba82eb158ec62ee204cd1832a1d261de2.tar.xz |
Bug 135817 - update template filename. Oops.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Token.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm index 07e5de698..3f75eeb95 100644 --- a/Bugzilla/Token.pm +++ b/Bugzilla/Token.pm @@ -122,7 +122,8 @@ sub IssuePasswordToken { $vars->{'emailaddress'} = $loginname . &::Param('emailsuffix'); my $message = ""; - $template->process("account/email/password.txt.tmpl", $vars, \$message) + $template->process("account/password/forgotten-password.txt.tmpl", + $vars, \$message) || &::ThrowTemplateError($template->error()); open SENDMAIL, "|/usr/lib/sendmail -t -i"; |