aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorZach Prezkuta <fermion@gmx.com>2013-01-10 21:24:10 -0700
committerZach Prezkuta <fermion@gmx.com>2013-01-10 21:24:10 -0700
commitddb2a8c23acbb220b8e66a2f7dad18a21d7e55f8 (patch)
tree932ca3c5a6c5689f2cd2989b94c7d7a779ee7b37 /include
parentf0a08a05aedd8add7990f26c1a0d1894ddd06683 (diff)
downloadvolse-hubzilla-ddb2a8c23acbb220b8e66a2f7dad18a21d7e55f8.tar.gz
volse-hubzilla-ddb2a8c23acbb220b8e66a2f7dad18a21d7e55f8.tar.bz2
volse-hubzilla-ddb2a8c23acbb220b8e66a2f7dad18a21d7e55f8.zip
add Smarty templates for international templates
Diffstat (limited to 'include')
-rw-r--r--include/account.php11
-rwxr-xr-xinclude/items.php5
2 files changed, 0 insertions, 16 deletions
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"
diff --git a/include/items.php b/include/items.php
index 32826ef4c..123c0273a 100755
--- a/include/items.php
+++ b/include/items.php
@@ -3601,9 +3601,6 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
- $engine = get_app()->get_template_engine();
- get_app()->set_template_engine();
-
$email_tpl = get_intltext_template('follow_notify_eml.tpl');
$email = replace_macros($email_tpl, array(
'$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
@@ -3613,8 +3610,6 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
'$sitename' => $a->config['sitename']
));
- get_app()->set_template_engine($engine);
-
$res = mail($r[0]['email'],
(($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
$email,