diff options
author | friendica <info@friendica.com> | 2012-12-06 00:03:24 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-06 00:03:24 -0800 |
commit | c6b8ab534f4516605ed276b9f8677f9cf578ea45 (patch) | |
tree | d920a212cf7cbf583f87d874e47dc98abd271dd7 /include/account.php | |
parent | d715febf7c981f8b65fddb0952e769df56ba081f (diff) | |
download | volse-hubzilla-c6b8ab534f4516605ed276b9f8677f9cf578ea45.tar.gz volse-hubzilla-c6b8ab534f4516605ed276b9f8677f9cf578ea45.tar.bz2 volse-hubzilla-c6b8ab534f4516605ed276b9f8677f9cf578ea45.zip |
fixed several little nit bugs that cropped up during deployment
Diffstat (limited to 'include/account.php')
-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 b850fcffd..9f967f2c3 100644 --- a/include/account.php +++ b/include/account.php @@ -263,7 +263,7 @@ function send_verification_email($email,$password) { '$password' => $password, )); - $res = mail($email, sprintf( t('Registration details for %s'), get_config('config','sitename')), + $res = mail($email, sprintf( t('Registration details for %s'), get_config('system','sitename')), $email_msg, 'From: ' . t('Administrator') . '@' . get_app()->get_hostname() . "\n" . 'Content-type: text/plain; charset=UTF-8' . "\n" |