diff options
author | Mario <mario@mariovavti.com> | 2021-01-15 20:10:44 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-15 20:10:44 +0000 |
commit | 50fb658776e82bd343faf2f5aeb81402abd499c5 (patch) | |
tree | 30d74acac28c25744b11979ef53cafbe7430a91b /Zotlabs/Module | |
parent | dde0f3a4032d2a24f1afa6941452c7c4e933cda7 (diff) | |
download | volse-hubzilla-50fb658776e82bd343faf2f5aeb81402abd499c5.tar.gz volse-hubzilla-50fb658776e82bd343faf2f5aeb81402abd499c5.tar.bz2 volse-hubzilla-50fb658776e82bd343faf2f5aeb81402abd499c5.zip |
fix undefined variable
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Chanview.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Chanview.php b/Zotlabs/Module/Chanview.php index 12e1891d4..8ae4841b4 100644 --- a/Zotlabs/Module/Chanview.php +++ b/Zotlabs/Module/Chanview.php @@ -70,7 +70,7 @@ class Chanview extends \Zotlabs\Web\Controller { $zf = Zotfinger::exec($_REQUEST['url'], null); if(array_path_exists('signature/signer',$zf) && $zf['signature']['signer'] === $_REQUEST['url'] && intval($zf['signature']['header_valid'])) { - Libzot::import_xchan($j); + Libzot::import_xchan($zf['data']); $r = q("select * from xchan where xchan_url = '%s'", dbesc($_REQUEST['url']) ); |