aboutsummaryrefslogtreecommitdiffstats
path: root/mod
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 /mod
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 'mod')
-rw-r--r--mod/lostpass.php11
-rw-r--r--mod/regmod.php5
-rwxr-xr-xmod/setup.php4
3 files changed, 0 insertions, 20 deletions
diff --git a/mod/lostpass.php b/mod/lostpass.php
index 667c08ff5..57e6d6965 100644
--- a/mod/lostpass.php
+++ b/mod/lostpass.php
@@ -31,10 +31,6 @@ function lostpass_post(&$a) {
if($r)
info( t('Password reset request issued. Check your email.') . EOL);
- $engine = get_app()->get_template_engine();
- get_app()->set_template_engine();
-
-
$email_tpl = get_intltext_template("lostpass_eml.tpl");
$email_tpl = replace_macros($email_tpl, array(
'$sitename' => $a->config['sitename'],
@@ -44,9 +40,6 @@ function lostpass_post(&$a) {
'$reset_link' => $a->get_baseurl() . '/lostpass?verify=' . $new_password
));
-
- get_app()->set_template_engine($engine);
-
$res = mail($email, sprintf( t('Password reset requested at %s'),$a->config['sitename']),
$email_tpl,
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
@@ -99,8 +92,6 @@ function lostpass_content(&$a) {
));
info("Your password has been reset." . EOL);
- $engine = get_app()->get_template_engine();
- get_app()->set_template_engine();
$email_tpl = get_intltext_template("passchanged_eml.tpl");
@@ -112,8 +103,6 @@ function lostpass_content(&$a) {
'$new_password' => $new_password,
'$uid' => $newuid ));
- get_app()->set_template_engine($engine);
-
$res = mail($email,"Your password has changed at {$a->config['sitename']}",$email_tpl,
'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
. 'Content-type: text/plain; charset=UTF-8' . "\n"
diff --git a/mod/regmod.php b/mod/regmod.php
index 23b586be2..3da1575d3 100644
--- a/mod/regmod.php
+++ b/mod/regmod.php
@@ -39,9 +39,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'],
@@ -52,8 +49,6 @@ 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"
diff --git a/mod/setup.php b/mod/setup.php
index 4c1b7ec9b..4fa5152ea 100755
--- a/mod/setup.php
+++ b/mod/setup.php
@@ -78,9 +78,6 @@ function setup_post(&$a) {
// connect to db
$db = new dba($dbhost, $dbuser, $dbpass, $dbdata, true);
- // disable smarty for this template
- $engine = $a->get_template_engine();
- $a->set_template_engine();
$tpl = get_intltext_template('htconfig.tpl');
$txt = replace_macros($tpl,array(
'$dbhost' => $dbhost,
@@ -93,7 +90,6 @@ function setup_post(&$a) {
'$phpath' => $phpath,
'$adminmail' => $adminmail
));
- $a->set_template_engine($engine);
$result = file_put_contents('.htconfig.php', $txt);
if(! $result) {