diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-22 19:41:08 +1000 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-22 19:41:08 +1000 |
commit | 8ead4745f82d113c943f79967e04ea985ec45ad0 (patch) | |
tree | 04e44a6d6e76d238935f73ff6a519167409d6189 | |
parent | 15b241cc3ee12cc5b3f1aeb207be562ea2db1c09 (diff) | |
parent | ea9f169a6c58ede69882a82160618f3a29b32c42 (diff) | |
download | volse-hubzilla-8ead4745f82d113c943f79967e04ea985ec45ad0.tar.gz volse-hubzilla-8ead4745f82d113c943f79967e04ea985ec45ad0.tar.bz2 volse-hubzilla-8ead4745f82d113c943f79967e04ea985ec45ad0.zip |
Merge pull request #54 from git-marijus/master
fix consensus items - issue #53
-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 |