diff options
author | zotlabs <mike@macgirvin.com> | 2020-02-09 16:32:18 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2020-02-09 16:32:18 -0800 |
commit | bbcb237f5b996e94af37611152105b2e965ea493 (patch) | |
tree | 042ea69cfc8eb90f0588b9c71edb8e4ef164390b /Zotlabs/Module/Vote.php | |
parent | fc9e6d289acf30f89da0051a90cbf16f0bc006fb (diff) | |
download | volse-hubzilla-bbcb237f5b996e94af37611152105b2e965ea493.tar.gz volse-hubzilla-bbcb237f5b996e94af37611152105b2e965ea493.tar.bz2 volse-hubzilla-bbcb237f5b996e94af37611152105b2e965ea493.zip |
poll updates
Diffstat (limited to 'Zotlabs/Module/Vote.php')
-rw-r--r-- | Zotlabs/Module/Vote.php | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/Zotlabs/Module/Vote.php b/Zotlabs/Module/Vote.php index 52d6a4bea..2c31d84dc 100644 --- a/Zotlabs/Module/Vote.php +++ b/Zotlabs/Module/Vote.php @@ -88,15 +88,25 @@ class Vote extends Controller { $item['parent_mid'] = $fetch[0]['mid']; $item['uuid'] = new_uuid(); $item['mid'] = z_root() . '/item/' . $item['uuid']; - $item['verb'] = 'Answer'; + $item['verb'] = 'Create'; $item['title'] = $res; $item['author_xchan'] = $channel['channel_hash']; $item['owner_xchan'] = $fetch[0]['author_xchan']; - $item['obj'] = $obj; - $item['obj_type'] = 'Question'; + $item['obj_type'] = 'Note'; + $item['author'] = channelx_by_n($channel['channel_id']); + + $item['obj'] = Activity::encode_item($item,true); + + // now reset the placeholders + + $item['obj_type'] = 'Answer'; + unset($item['author']); + + + $x = item_store($item); + - $x = item_store($item); retain_item($fetch[0]['id']); |