diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-10-02 10:36:04 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-10-02 10:36:56 +0200 |
commit | 541e40f29cbe47c25cfdeba32b03b7388c9578aa (patch) | |
tree | f85684806856256a0a7c9246a6259b554aa17afb | |
parent | 1af56b102583ca9bd3373878aad64c5a5f7e2a65 (diff) | |
download | volse-hubzilla-541e40f29cbe47c25cfdeba32b03b7388c9578aa.tar.gz volse-hubzilla-541e40f29cbe47c25cfdeba32b03b7388c9578aa.tar.bz2 volse-hubzilla-541e40f29cbe47c25cfdeba32b03b7388c9578aa.zip |
missing backslash
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index d6fe73717..1e2d9d3aa 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -77,7 +77,7 @@ 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'); |