diff options
author | Max Kostikov <max@kostikov.co> | 2020-02-05 14:28:27 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2020-02-05 14:28:27 +0100 |
commit | 82acfb75a1e79c9dddc60fbc20bc1989fc495ce4 (patch) | |
tree | e84505932caf4a91c31dee826b63d8df2bcae25b /include | |
parent | 6838342d625236a05695d73efd99f1afdab67d96 (diff) | |
parent | fc9e6d289acf30f89da0051a90cbf16f0bc006fb (diff) | |
download | volse-hubzilla-82acfb75a1e79c9dddc60fbc20bc1989fc495ce4.tar.gz volse-hubzilla-82acfb75a1e79c9dddc60fbc20bc1989fc495ce4.tar.bz2 volse-hubzilla-82acfb75a1e79c9dddc60fbc20bc1989fc495ce4.zip |
Merge branch 'dev' into 'dev'
missing piece of poll code
See merge request hubzilla/core!1826
Diffstat (limited to 'include')
-rwxr-xr-x | include/items.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 9f90b2f3b..c5743e91c 100755 --- a/include/items.php +++ b/include/items.php @@ -9,6 +9,7 @@ use Zotlabs\Lib\MarkdownSoap; use Zotlabs\Lib\MessageFilter; use Zotlabs\Lib\ThreadListener; use Zotlabs\Lib\IConfig; +use Zotlabs\Lib\Activity; use Zotlabs\Access\PermissionLimits; use Zotlabs\Access\AccessList; use Zotlabs\Daemon\Master; @@ -1947,6 +1948,11 @@ function item_store($arr, $allow_exec = false, $deliver = true) { if(intval($r[0]['item_uplink']) && (! $r[0]['item_private'])) $arr['item_private'] = 0; + + if(in_array($arr['verb'], ['Note','Answer']) && $arr['obj_type'] === 'Question' && intval($r[0]['item_wall'])) { + Activity::update_poll($r[0],$arr['mid'],$arr['title']); + } + } else { logger('item_store: item parent was not found - ignoring item'); |