diff options
author | Mario <mario@mariovavti.com> | 2024-06-10 09:16:21 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-06-10 09:16:21 +0000 |
commit | 51fe071c5ee6e7bd6adf532b250f788d3cb2e9cc (patch) | |
tree | bb222f95fc2cf8baa87a5970e11ea07043e6154c /Zotlabs | |
parent | c5cab3004f76abbd7ba59a3e588f83bdb3692b14 (diff) | |
download | volse-hubzilla-51fe071c5ee6e7bd6adf532b250f788d3cb2e9cc.tar.gz volse-hubzilla-51fe071c5ee6e7bd6adf532b250f788d3cb2e9cc.tar.bz2 volse-hubzilla-51fe071c5ee6e7bd6adf532b250f788d3cb2e9cc.zip |
Ãfix undefined variable
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 0324bf662..0b46f2baf 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -1654,7 +1654,7 @@ class Item extends Controller { $listener = Libzot::zot_record_preferred($listener); $c = q("select abook_id from abook where abook_channel = %d and abook_xchan = '%s'", - intval($profile_uid), + intval($item['uid']), dbesc($listener['hubloc_hash']) ); |