diff options
author | friendica <info@friendica.com> | 2015-01-14 14:15:04 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-14 14:15:04 -0800 |
commit | 25e090148d456bab057c456f1446301a6ffe56f4 (patch) | |
tree | e4dcb48e63b2fb6a5950a2b88f536e7460003930 /include/items.php | |
parent | 1005618fafdea956e2941d871bc74cb1158aa043 (diff) | |
download | volse-hubzilla-25e090148d456bab057c456f1446301a6ffe56f4.tar.gz volse-hubzilla-25e090148d456bab057c456f1446301a6ffe56f4.tar.bz2 volse-hubzilla-25e090148d456bab057c456f1446301a6ffe56f4.zip |
federate consensus items (in network only). Work in progress.
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 5812efa90..e26180641 100755 --- a/include/items.php +++ b/include/items.php @@ -834,6 +834,11 @@ function get_item_elements($x) { $arr['item_flags'] = 0; + if(array_key_exists('flags',$x) && in_array('consensus',$x['flags'])) + $arr['item_flags'] |= ITEM_CONSENSUS; + + + if(array_key_exists('flags',$x) && in_array('deleted',$x['flags'])) $arr['item_restrict'] = ITEM_DELETED; if(array_key_exists('flags',$x) && in_array('hidden',$x['flags'])) @@ -1314,6 +1319,8 @@ function encode_item_flags($item) { $ret[] = 'thread_parent'; if($item['item_flags'] & ITEM_NSFW) $ret[] = 'nsfw'; + if($item['item_flags'] & ITEM_CONSENSUS) + $ret[] = 'consensus'; if($item['item_private']) $ret[] = 'private'; |