diff options
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -65,7 +65,8 @@ Hubzilla 1.14RC (2016-10-02) - Public forum check with custom/expert permissions Plugins - - Cdav: add support for recurring events + - Cdav security: fix rw permission check + - Cdav: add partial support for recurring events in the browser client (editing/creating is not implemented) - New plugin phpmailer: use phpmailer class instead of php's built-in mail() function - Diaspora: third party on other network comment issue - Diaspora: comment fix (hubzilla originated comment with plugin activated by comment author not making it to Diaspora) 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(); |