aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-09-09 18:52:30 +0000
committerMario <mario@mariovavti.com>2023-09-09 18:52:30 +0000
commita88236b36fc9828e6dccbbc044aa37b2f7b46581 (patch)
tree6d4667539577e83dc8dc6ce15f32fd2129b224a6
parentdf06c54bd2163474348f355ba373de85a9491d0e (diff)
downloadvolse-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
-rw-r--r--Zotlabs/Widget/Item.php2
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)