diff options
author | Mario <mario@mariovavti.com> | 2024-02-28 10:04:22 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-02-28 10:04:22 +0000 |
commit | 96e831663357280de044553d52dbf33dbf1a7dbb (patch) | |
tree | a6f194f1af92e1f2d130b7d57f506685733fbc7d /Zotlabs/Widget/Pinned.php | |
parent | 37878bf0a35bcd0fc799892618a8b34ca0440c2c (diff) | |
download | volse-hubzilla-96e831663357280de044553d52dbf33dbf1a7dbb.tar.gz volse-hubzilla-96e831663357280de044553d52dbf33dbf1a7dbb.tar.bz2 volse-hubzilla-96e831663357280de044553d52dbf33dbf1a7dbb.zip |
some cloeanup after last commit
Diffstat (limited to 'Zotlabs/Widget/Pinned.php')
-rw-r--r-- | Zotlabs/Widget/Pinned.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Zotlabs/Widget/Pinned.php b/Zotlabs/Widget/Pinned.php index a93937aa9..1380c156b 100644 --- a/Zotlabs/Widget/Pinned.php +++ b/Zotlabs/Widget/Pinned.php @@ -77,17 +77,6 @@ class Pinned { } } - $consensus = (intval($item['item_consensus']) ? true : false); - if($consensus) { - $conv_responses['agree'] = [ 'title' => t('Agree','title') ]; - $conv_responses['disagree'] = [ 'title' => t('Disagree','title') ]; - $conv_responses['abstain'] = [ 'title' => t('Abstain','title') ]; - if($commentable && $observer) { - $conlabels = [ t('I agree'), t('I disagree'), t('I abstain') ]; - $canvote = true; - } - } - $this->activity($item, $conv_responses); $verified = (intval($item['item_verified']) ? t('Message signature validated') : ''); |