diff options
author | Mario <mario@mariovavti.com> | 2020-02-11 07:55:34 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-02-11 07:55:34 +0100 |
commit | 95476cf33cf7c7971e018f9136d1c64dfc901d17 (patch) | |
tree | b689e76e7eae9c7e339916048b7c5623b96a4b7d /Zotlabs/Lib | |
parent | a39d436f9f46138db623ee3c9ddef2c501ea8bd2 (diff) | |
parent | bf7c96807a50433b7241ddf6df9e01d4ef11f43d (diff) | |
download | volse-hubzilla-95476cf33cf7c7971e018f9136d1c64dfc901d17.tar.gz volse-hubzilla-95476cf33cf7c7971e018f9136d1c64dfc901d17.tar.bz2 volse-hubzilla-95476cf33cf7c7971e018f9136d1c64dfc901d17.zip |
Merge branch 'dev' into 'dev'
this allows polls to federate from hubzilla to zap, though still a remaining issue with voting
See merge request hubzilla/core!1830
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 11 | ||||
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 1 |
2 files changed, 10 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 5a406beb7..1ac3135db 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -592,8 +592,15 @@ class Activity { } } - - $ret['id'] = ((strpos($i['mid'],'http') === 0) ? $i['mid'] : z_root() . '/activity/' . urlencode($i['mid'])); + if (strpos($i['mid'],z_root() . '/item/') !== false) { + $ret['id'] = str_replace('/item/','/activity/',$i['mid']); + } + elseif (strpos($i['mid'],z_root() . '/event/') !== false) { + $ret['id'] = str_replace('/event/','/activity/',$i['mid']); + } + else { + $ret['id'] = ((strpos($i['mid'],'http') === 0) ? $i['mid'] : z_root() . '/activity/' . urlencode($i['mid'])); + } if($i['title']) $ret['name'] = html2plain(bbcode($i['title'], [ 'cache' => true ])); diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index d64421926..42e706754 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1617,6 +1617,7 @@ class Libzot { dbesc($arr['parent_mid']), intval($channel['channel_id']) ); + if(! $r) { $DR->update('comment parent not found'); $result[] = $DR->get(); |