diff options
author | Mario <mario@mariovavti.com> | 2023-09-09 18:52:30 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-09-09 18:52:30 +0000 |
commit | a88236b36fc9828e6dccbbc044aa37b2f7b46581 (patch) | |
tree | 6d4667539577e83dc8dc6ce15f32fd2129b224a6 /Zotlabs/Widget/Item.php | |
parent | df06c54bd2163474348f355ba373de85a9491d0e (diff) | |
download | volse-hubzilla-a88236b36fc9828e6dccbbc044aa37b2f7b46581.tar.gz volse-hubzilla-a88236b36fc9828e6dccbbc044aa37b2f7b46581.tar.bz2 volse-hubzilla-a88236b36fc9828e6dccbbc044aa37b2f7b46581.zip |
possible fix for item widget not respecting ACL if added by title - issue #1799
Diffstat (limited to 'Zotlabs/Widget/Item.php')
-rw-r--r-- | Zotlabs/Widget/Item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Item.php b/Zotlabs/Widget/Item.php index 9fd703dfe..6f943ffdf 100644 --- a/Zotlabs/Widget/Item.php +++ b/Zotlabs/Widget/Item.php @@ -34,7 +34,7 @@ class Item { if($arr['title']) { $r = q("select item.* from item left join iconfig on item.id = iconfig.iid where item.uid = %d and iconfig.cat = 'system' and iconfig.v = '%s' - and iconfig.k = 'WEBPAGE' and item_type = %d $sql_options $revision limit 1", + and iconfig.k = 'WEBPAGE' and item_type = %d $sql_extra $revision limit 1", intval($channel_id), dbesc($arr['title']), intval(ITEM_TYPE_WEBPAGE) |