aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-25 14:08:15 -0800
committerzotlabs <mike@macgirvin.com>2017-11-25 14:08:15 -0800
commit4471f580d7a50126d42690f05e81a75f7bbf8084 (patch)
tree54e4fd3146a3978de744a39de6b7938d763852dd /include/items.php
parente5141dd91bf483b0458b6f9226b994afbee23524 (diff)
parente1fdac32782de11e443c7398ff3fb9870fa9b2d9 (diff)
downloadvolse-hubzilla-4471f580d7a50126d42690f05e81a75f7bbf8084.tar.gz
volse-hubzilla-4471f580d7a50126d42690f05e81a75f7bbf8084.tar.bz2
volse-hubzilla-4471f580d7a50126d42690f05e81a75f7bbf8084.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php
index 654cc5de3..042deed1b 100755
--- a/include/items.php
+++ b/include/items.php
@@ -1749,6 +1749,22 @@ function item_store($arr, $allow_exec = false, $deliver = true) {
intval($arr['uid'])
);
+ // perhaps the system channel owns the post and it's a pubstream item
+
+ if(! $r) {
+ $s = q("select channel_id from channel where channel_system = 1 limit 1");
+ if($s) {
+ $r = q("SELECT * FROM item WHERE mid = '%s' AND uid = %d ORDER BY id ASC LIMIT 1",
+ dbesc($arr['parent_mid']),
+ intval($s[0]['channel_id'])
+ );
+ }
+ if($r) {
+ $arr['uid'] = $r[0]['uid'];
+ $arr['aid'] = 0;
+ }
+ }
+
if($r) {
// in case item_store was killed before the parent's parent attribute got set,