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 --- include/account.php | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'include/account.php') diff --git a/include/account.php b/include/account.php index e98bae4b0..e675f376f 100644 --- a/include/account.php +++ b/include/account.php @@ -230,9 +230,6 @@ function send_reg_approval_email($arr) { else push_lang('en'); - $engine = get_app()->get_template_engine(); - get_app()->set_template_engine(); - $email_msg = replace_macros(get_intltext_template('register_verify_email.tpl'), array( '$sitename' => get_config('config','sitename'), '$siteurl' => z_root(), @@ -241,8 +238,6 @@ function send_reg_approval_email($arr) { '$hash' => $hash )); - get_app()->set_template_engine($engine); - $res = mail($admin['email'], sprintf( t('Registration request at %s'), get_config('config','sitename')), $email_msg, 'From: ' . t('Administrator') . '@' . get_app()->get_hostname() . "\n" @@ -260,9 +255,6 @@ function send_reg_approval_email($arr) { function send_verification_email($email,$password) { - $engine = get_app()->get_template_engine(); - get_app()->set_template_engine(); - $email_msg = replace_macros(get_intltext_template('register_open_eml.tpl'), array( '$sitename' => get_config('config','sitename'), '$siteurl' => z_root(), @@ -270,9 +262,6 @@ function send_verification_email($email,$password) { '$password' => $password, )); - - get_app()->set_template_engine($engine); - $res = mail($email, sprintf( t('Registration details for %s'), get_config('system','sitename')), $email_msg, 'From: ' . t('Administrator') . '@' . get_app()->get_hostname() . "\n" -- cgit v1.2.3