]> git.mxchange.org Git - friendica.git/blobdiff - mod/register.php
allow Smarty use on international templates
[friendica.git] / mod / register.php
index 580101924c2130475d34e3762c4e901ff1497a86..3532f92e8d132e65d6b17578325c557ae314fc3a 100644 (file)
@@ -79,10 +79,6 @@ function register_post(&$a) {
                        set_pconfig($user['uid'],'system','invites_remaining',$num_invites);
                }
 
-               $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'],
@@ -92,10 +88,6 @@ function register_post(&$a) {
                                '$password' => $result['password'],
                                '$uid' => $user['uid'] ));
 
-
-               get_app()->set_template_engine($engine);
-
-
                $res = mail($user['email'], email_header_encode( sprintf( t('Registration details for %s'), $a->config['sitename']),'UTF-8'),
                        $email_tpl, 
                                'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
@@ -139,10 +131,6 @@ function register_post(&$a) {
                        set_pconfig($user['uid'],'system','invites_remaining',$num_invites);
                }
 
-
-               $engine = get_app()->get_template_engine();
-               get_app()->set_template_engine();
-
                $email_tpl = get_intltext_template("register_verify_eml.tpl");
                $email_tpl = replace_macros($email_tpl, array(
                                '$sitename' => $a->config['sitename'],
@@ -154,9 +142,6 @@ function register_post(&$a) {
                                '$hash' => $hash
                 ));
 
-               get_app()->set_template_engine($engine);
-
-
                $res = mail($a->config['admin_email'], email_header_encode( sprintf(t('Registration request at %s'), $a->config['sitename']),'UTF-8'),
                        $email_tpl,
                                'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"