diff options
author | friendica <info@friendica.com> | 2013-01-07 22:37:48 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-07 22:37:48 -0800 |
commit | 5cfbb3f5e820d0b3ddf86b458e3feb177311382c (patch) | |
tree | c20003505052eb82c2cf73a8c44092869613b616 /include | |
parent | 5875691d348a3cd36d646b28ac611adf8226540c (diff) | |
download | volse-hubzilla-5cfbb3f5e820d0b3ddf86b458e3feb177311382c.tar.gz volse-hubzilla-5cfbb3f5e820d0b3ddf86b458e3feb177311382c.tar.bz2 volse-hubzilla-5cfbb3f5e820d0b3ddf86b458e3feb177311382c.zip |
registration issue
Diffstat (limited to 'include')
-rw-r--r-- | include/account.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/account.php b/include/account.php index 329e0a67c..e98bae4b0 100644 --- a/include/account.php +++ b/include/account.php @@ -231,7 +231,7 @@ function send_reg_approval_email($arr) { push_lang('en'); $engine = get_app()->get_template_engine(); - getapp()->set_template_engine(); + get_app()->set_template_engine(); $email_msg = replace_macros(get_intltext_template('register_verify_email.tpl'), array( '$sitename' => get_config('config','sitename'), @@ -241,7 +241,7 @@ function send_reg_approval_email($arr) { '$hash' => $hash )); - getapp()->set_template_engine($engine); + get_app()->set_template_engine($engine); $res = mail($admin['email'], sprintf( t('Registration request at %s'), get_config('config','sitename')), $email_msg, @@ -261,7 +261,7 @@ function send_reg_approval_email($arr) { function send_verification_email($email,$password) { $engine = get_app()->get_template_engine(); - getapp()->set_template_engine(); + get_app()->set_template_engine(); $email_msg = replace_macros(get_intltext_template('register_open_eml.tpl'), array( '$sitename' => get_config('config','sitename'), @@ -271,7 +271,7 @@ function send_verification_email($email,$password) { )); - getapp()->set_template_engine($engine); + get_app()->set_template_engine($engine); $res = mail($email, sprintf( t('Registration details for %s'), get_config('system','sitename')), $email_msg, |