aboutsummaryrefslogtreecommitdiffstats
path: root/mod/regmod.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/regmod.php')
-rw-r--r--mod/regmod.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/regmod.php b/mod/regmod.php
index 3da1575d3..23b586be2 100644
--- a/mod/regmod.php
+++ b/mod/regmod.php
@@ -39,6 +39,9 @@ function user_allow($hash) {
push_lang($register[0]['language']);
+ $engine = get_app()->get_template_engine();
+ get_app()->set_template_engine();
+
$email_tpl = get_intltext_template("register_open_eml.tpl");
$email_tpl = replace_macros($email_tpl, array(
'$sitename' => $a->config['sitename'],
@@ -49,6 +52,8 @@ function user_allow($hash) {
'$uid' => $user[0]['uid']
));
+ get_app()->set_template_engine($engine);
+
$res = mail($user[0]['email'], sprintf(t('Registration details for %s'), $a->config['sitename']),
$email_tpl,
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"