diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-04-12 18:01:35 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-04-12 18:01:35 +0200 |
commit | 6f1c261f6bc740d3a8a0c3b8540b7a5712c20cfd (patch) | |
tree | 505822b74922fded408f841c06bfc649063e044f /Zotlabs/Lib/Libzotdir.php | |
parent | 3233d5485f2b4284e3c386d51b540f15563955ce (diff) | |
download | volse-hubzilla-6f1c261f6bc740d3a8a0c3b8540b7a5712c20cfd.tar.gz volse-hubzilla-6f1c261f6bc740d3a8a0c3b8540b7a5712c20cfd.tar.bz2 volse-hubzilla-6f1c261f6bc740d3a8a0c3b8540b7a5712c20cfd.zip |
deprecate ud_flags and ud_arr in import_xchan()
Diffstat (limited to 'Zotlabs/Lib/Libzotdir.php')
-rw-r--r-- | Zotlabs/Lib/Libzotdir.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzotdir.php b/Zotlabs/Lib/Libzotdir.php index 3b66a42c6..bb7efe501 100644 --- a/Zotlabs/Lib/Libzotdir.php +++ b/Zotlabs/Lib/Libzotdir.php @@ -343,7 +343,7 @@ class Libzotdir { $zf = Zotfinger::exec($href); } if(array_path_exists('signature/signer',$zf) && $zf['signature']['signer'] === $href && intval($zf['signature']['header_valid'])) { - $xc = Libzot::import_xchan($zf['data'], 0, $ud); + $xc = Libzot::import_xchan($zf['data']); // This is a workaround for a missing xchan_updated column // TODO: implement xchan_updated in the xchan table and update this column instead if($zf['data']['primary_location']['address'] && $zf['data']['primary_location']['url']) { |