diff options
author | friendica <info@friendica.com> | 2013-07-18 21:42:10 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-18 21:42:10 -0700 |
commit | dfd13a0d8aaf04e2d7037bad06f261206d61ad9c (patch) | |
tree | 3bb6006e8c239d8443af0366a7a5f2f5b6040ce7 | |
parent | 94dfe87a6baba5424916a831877f91875a85278d (diff) | |
download | volse-hubzilla-dfd13a0d8aaf04e2d7037bad06f261206d61ad9c.tar.gz volse-hubzilla-dfd13a0d8aaf04e2d7037bad06f261206d61ad9c.tar.bz2 volse-hubzilla-dfd13a0d8aaf04e2d7037bad06f261206d61ad9c.zip |
fix registration email (sitename)
-rw-r--r-- | include/account.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/account.php b/include/account.php index bc9c44429..b7fd3ef28 100644 --- a/include/account.php +++ b/include/account.php @@ -282,7 +282,7 @@ function send_reg_approval_email($arr) { function send_verification_email($email,$password) { $email_msg = replace_macros(get_intltext_template('register_open_eml.tpl'), array( - '$sitename' => get_config('config','sitename'), + '$sitename' => get_config('system','sitename'), '$siteurl' => z_root(), '$email' => $email, '$password' => t('your registration password'), |