aboutsummaryrefslogtreecommitdiffstats
path: root/include/account.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/account.php')
-rw-r--r--include/account.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/account.php b/include/account.php
index 9f967f2c3..329e0a67c 100644
--- a/include/account.php
+++ b/include/account.php
@@ -230,6 +230,8 @@ function send_reg_approval_email($arr) {
else
push_lang('en');
+ $engine = get_app()->get_template_engine();
+ getapp()->set_template_engine();
$email_msg = replace_macros(get_intltext_template('register_verify_email.tpl'), array(
'$sitename' => get_config('config','sitename'),
@@ -239,6 +241,8 @@ function send_reg_approval_email($arr) {
'$hash' => $hash
));
+ getapp()->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"
@@ -256,6 +260,9 @@ function send_reg_approval_email($arr) {
function send_verification_email($email,$password) {
+ $engine = get_app()->get_template_engine();
+ getapp()->set_template_engine();
+
$email_msg = replace_macros(get_intltext_template('register_open_eml.tpl'), array(
'$sitename' => get_config('config','sitename'),
'$siteurl' => z_root(),
@@ -263,6 +270,9 @@ function send_verification_email($email,$password) {
'$password' => $password,
));
+
+ getapp()->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"