aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-12-15 08:51:05 +0100
committerMario Vavti <mario@mariovavti.com>2017-12-15 08:54:55 +0100
commit48db3a189f3a796104cc4cf538be27ed6fa20383 (patch)
treef1b7f17c5310a779c04fcc79468ae4ea9ba9bebd /Zotlabs
parent08820fd655460a9628a99d9f5af111675c494afa (diff)
downloadvolse-hubzilla-48db3a189f3a796104cc4cf538be27ed6fa20383.tar.gz
volse-hubzilla-48db3a189f3a796104cc4cf538be27ed6fa20383.tar.bz2
volse-hubzilla-48db3a189f3a796104cc4cf538be27ed6fa20383.zip
only use effective uid if we deal with sys channel content
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Hq.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/Zotlabs/Module/Hq.php b/Zotlabs/Module/Hq.php
index 073b67b92..1e46a6353 100644
--- a/Zotlabs/Module/Hq.php
+++ b/Zotlabs/Module/Hq.php
@@ -98,6 +98,8 @@ class Hq extends \Zotlabs\Web\Controller {
$sys = get_sys_channel();
$sql_extra = item_permissions_sql($sys['channel_id']);
+ $sys_item = false;
+
}
if(! $update) {
@@ -215,6 +217,8 @@ class Hq extends \Zotlabs\Web\Controller {
}
if(!$r) {
+ $sys_item = true;
+
$r = q("SELECT item.id AS item_id FROM item
LEFT JOIN abook ON item.author_xchan = abook.abook_xchan
WHERE mid = '%s' AND item.uid = %d $item_normal
@@ -243,6 +247,8 @@ class Hq extends \Zotlabs\Web\Controller {
}
if(!$r) {
+ $sys_item = true;
+
$r = q("SELECT item.parent AS item_id FROM item
LEFT JOIN abook ON item.author_xchan = abook.abook_xchan
WHERE mid = '%s' AND item.uid = %d $item_normal_update $simple_update
@@ -268,7 +274,7 @@ class Hq extends \Zotlabs\Web\Controller {
dbesc($parents_str)
);
- xchan_query($items,true,local_channel());
+ xchan_query($items,true,(($sys_item) ? local_channel() : 0));
$items = fetch_post_tags($items,true);
$items = conv_sort($items,'created');
}