diff options
author | zotlabs <mike@macgirvin.com> | 2019-06-28 16:49:23 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-06-28 16:49:23 -0700 |
commit | 4aa59226d7f11e4d97bb3bff649cc0e2ecbbe5e8 (patch) | |
tree | d821a67da3af303eaa0e3e00213c3277d7d7b473 /include | |
parent | d53c98860dbf5a9fa4e1b25aa06957034783bb9f (diff) | |
download | volse-hubzilla-4aa59226d7f11e4d97bb3bff649cc0e2ecbbe5e8.tar.gz volse-hubzilla-4aa59226d7f11e4d97bb3bff649cc0e2ecbbe5e8.tar.bz2 volse-hubzilla-4aa59226d7f11e4d97bb3bff649cc0e2ecbbe5e8.zip |
I wonder how long zot_finger() has been missing and how this may have affected the directory servers.
Diffstat (limited to 'include')
-rw-r--r-- | include/dir_fns.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dir_fns.php b/include/dir_fns.php index d4f55a469..068ab4831 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -355,7 +355,7 @@ function update_directory_entry($ud) { } } } - $x = zot_finger($ud['ud_addr'], ''); + $x = \Zotlabs\Zot\Finger::run($ud['ud_addr'], ''); if ($x['success']) { $j = json_decode($x['body'], true); if ($j) |