From ddb2a8c23acbb220b8e66a2f7dad18a21d7e55f8 Mon Sep 17 00:00:00 2001 From: Zach Prezkuta Date: Thu, 10 Jan 2013 21:24:10 -0700 Subject: add Smarty templates for international templates --- mod/lostpass.php | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'mod/lostpass.php') diff --git a/mod/lostpass.php b/mod/lostpass.php index 667c08ff5..57e6d6965 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -31,10 +31,6 @@ function lostpass_post(&$a) { if($r) info( t('Password reset request issued. Check your email.') . EOL); - $engine = get_app()->get_template_engine(); - get_app()->set_template_engine(); - - $email_tpl = get_intltext_template("lostpass_eml.tpl"); $email_tpl = replace_macros($email_tpl, array( '$sitename' => $a->config['sitename'], @@ -44,9 +40,6 @@ function lostpass_post(&$a) { '$reset_link' => $a->get_baseurl() . '/lostpass?verify=' . $new_password )); - - get_app()->set_template_engine($engine); - $res = mail($email, sprintf( t('Password reset requested at %s'),$a->config['sitename']), $email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n" @@ -99,8 +92,6 @@ function lostpass_content(&$a) { )); info("Your password has been reset." . EOL); - $engine = get_app()->get_template_engine(); - get_app()->set_template_engine(); $email_tpl = get_intltext_template("passchanged_eml.tpl"); @@ -112,8 +103,6 @@ function lostpass_content(&$a) { '$new_password' => $new_password, '$uid' => $newuid )); - get_app()->set_template_engine($engine); - $res = mail($email,"Your password has changed at {$a->config['sitename']}",$email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n" . 'Content-type: text/plain; charset=UTF-8' . "\n" -- cgit v1.2.3