aboutsummaryrefslogtreecommitdiffstats
path: root/mod/lostpass.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-07 20:25:38 -0800
committerfriendica <info@friendica.com>2013-01-07 20:25:38 -0800
commit5cb8db64cfdcbf06244f151b7202e6d7ab1ed7d6 (patch)
tree108086b4a9d9eac318ca26f91e147b9ae520b2d6 /mod/lostpass.php
parentda188214c304cefaa6fe0a36e1f60932da2f3bfb (diff)
downloadvolse-hubzilla-5cb8db64cfdcbf06244f151b7202e6d7ab1ed7d6.tar.gz
volse-hubzilla-5cb8db64cfdcbf06244f151b7202e6d7ab1ed7d6.tar.bz2
volse-hubzilla-5cb8db64cfdcbf06244f151b7202e6d7ab1ed7d6.zip
bypass smarty for intletext templates
Diffstat (limited to 'mod/lostpass.php')
-rw-r--r--mod/lostpass.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/mod/lostpass.php b/mod/lostpass.php
index 57e6d6965..667c08ff5 100644
--- a/mod/lostpass.php
+++ b/mod/lostpass.php
@@ -31,6 +31,10 @@ 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'],
@@ -40,6 +44,9 @@ 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"
@@ -92,6 +99,8 @@ 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");
@@ -103,6 +112,8 @@ 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"