diff options
author | redmatrix <mike@macgirvin.com> | 2016-10-03 16:01:52 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-10-03 16:01:52 -0700 |
commit | 2aa89795223961cccd43e1c300423920c55d8578 (patch) | |
tree | 5fae53cdba2d15d17ab131eaac03d7359bc3605f /Zotlabs/Lib/Enotify.php | |
parent | e93fdefd72fee99b486a0653f36526d591cde2bb (diff) | |
parent | 5dc9de41ebd5cecf43678e7764d14f77ed1ff941 (diff) | |
download | volse-hubzilla-2aa89795223961cccd43e1c300423920c55d8578.tar.gz volse-hubzilla-2aa89795223961cccd43e1c300423920c55d8578.tar.bz2 volse-hubzilla-2aa89795223961cccd43e1c300423920c55d8578.zip |
Merge branch '1.14RC' of https://github.com/redmatrix/hubzilla into 1.14RC_merge
Diffstat (limited to 'Zotlabs/Lib/Enotify.php')
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index efb1c4307..9a8628968 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -77,12 +77,12 @@ class Enotify { $sender_email = get_config('system','from_email'); if(! $sender_email) - $sender_email = 'Administrator' . '@' . App::get_hostname(); + $sender_email = 'Administrator' . '@' . \App::get_hostname(); $sender_name = get_config('system','from_email_name'); if(! $sender_name) - $sender_name = Zotlabs\Lib\System::get_site_name(); + $sender_name = \Zotlabs\Lib\System::get_site_name(); |