diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-09-22 10:59:19 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-09-22 10:59:19 +0200 |
commit | ea9f169a6c58ede69882a82160618f3a29b32c42 (patch) | |
tree | 95d0feeb83a0b46d64389473ca874604e87ed83e /mod | |
parent | 146ff6f70308647b27374a1bba386c156498bd2e (diff) | |
download | volse-hubzilla-ea9f169a6c58ede69882a82160618f3a29b32c42.tar.gz volse-hubzilla-ea9f169a6c58ede69882a82160618f3a29b32c42.tar.bz2 volse-hubzilla-ea9f169a6c58ede69882a82160618f3a29b32c42.zip |
fix consensus items - issue #53
Diffstat (limited to 'mod')
-rw-r--r-- | mod/item.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/item.php b/mod/item.php index d0cf59091..93f24bd1a 100644 --- a/mod/item.php +++ b/mod/item.php @@ -641,6 +641,7 @@ function item_post(&$a) { $item_unseen = ((local_channel() != $profile_uid) ? 1 : 0); $item_wall = (($post_type === 'wall' || $post_type === 'wall-comment') ? 1 : 0); $item_origin = (($origin) ? 1 : 0); + $item_consensus = (($consensus) ? 1 : 0); // determine if this is a wall post |