diff options
author | Mario <mario@mariovavti.com> | 2020-02-10 12:25:11 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-02-10 12:25:11 +0100 |
commit | 50dbe1e62d8da44a710f1eb0f7e9d9eaf88c4084 (patch) | |
tree | a5a7646e1401b2c943d426f1198c3834f62baee6 /include/conversation.php | |
parent | 33be244d8a4ab62d52f7715b5f95ed293be79504 (diff) | |
parent | bbcb237f5b996e94af37611152105b2e965ea493 (diff) | |
download | volse-hubzilla-50dbe1e62d8da44a710f1eb0f7e9d9eaf88c4084.tar.gz volse-hubzilla-50dbe1e62d8da44a710f1eb0f7e9d9eaf88c4084.tar.bz2 volse-hubzilla-50dbe1e62d8da44a710f1eb0f7e9d9eaf88c4084.zip |
Merge branch 'dev' into 'dev'
poll updates
See merge request hubzilla/core!1828
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 45b2b4d80..327d89e53 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -408,11 +408,15 @@ function count_descendants($item) { * @return boolean */ function visible_activity($item) { - $hidden_activities = [ ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_AGREE, ACTIVITY_DISAGREE, ACTIVITY_ABSTAIN, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE, ACTIVITY_POLLRESPONSE, 'Answer' ]; + $hidden_activities = [ ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_AGREE, ACTIVITY_DISAGREE, ACTIVITY_ABSTAIN, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE, ACTIVITY_POLLRESPONSE ]; if(intval($item['item_notshown'])) return false; + if ($item['obj_type'] === 'Answer') { + return false; + } + foreach($hidden_activities as $act) { if((activity_match($item['verb'], $act)) && ($item['mid'] != $item['parent_mid'])) { return false; |