diff options
author | redmatrix <git@macgirvin.com> | 2016-07-13 19:53:28 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-13 19:53:28 -0700 |
commit | 1fd65c934da1efcbc3e44c5ec1c5112859ba50f9 (patch) | |
tree | f2d71a643080caace31370a71e2f365e22946f8d /Zotlabs/Zot | |
parent | b72720f6b6070fa5c5036f8600c82454b378d1d0 (diff) | |
download | volse-hubzilla-1fd65c934da1efcbc3e44c5ec1c5112859ba50f9.tar.gz volse-hubzilla-1fd65c934da1efcbc3e44c5ec1c5112859ba50f9.tar.bz2 volse-hubzilla-1fd65c934da1efcbc3e44c5ec1c5112859ba50f9.zip |
lots more permission work
Diffstat (limited to 'Zotlabs/Zot')
-rw-r--r-- | Zotlabs/Zot/Finger.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Zot/Finger.php b/Zotlabs/Zot/Finger.php index 229fda8bd..9d373b2e6 100644 --- a/Zotlabs/Zot/Finger.php +++ b/Zotlabs/Zot/Finger.php @@ -28,7 +28,7 @@ class Finger { if (strpos($webbie,'@') === false) { $address = $webbie; - $host = App::get_hostname(); + $host = \App::get_hostname(); } else { $address = substr($webbie,0,strpos($webbie,'@')); $host = substr($webbie,strpos($webbie,'@')+1); |