]> git.mxchange.org Git - friendica.git/blobdiff - mod/regmod.php
allow Smarty use on international templates
[friendica.git] / mod / regmod.php
index 73bfc597b57f86466cd7ae96bdc60469ed6a200e..5ed7642005628546069db335f818a55e97fe5971 100644 (file)
@@ -41,9 +41,6 @@ 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'],
@@ -54,10 +51,6 @@ function user_allow($hash) {
                        '$uid' => $user[0]['uid']
        ));
 
-
-       get_app()->set_template_engine($engine);
-
-
        $res = mail($user[0]['email'], email_header_encode( sprintf(t('Registration details for %s'), $a->config['sitename']), 'UTF-8'),
                $email_tpl,
                        'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"