diff options
author | friendica <info@friendica.com> | 2015-02-10 19:10:18 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-10 19:10:18 -0800 |
commit | 79223b6b3d38bfbfb3a6d9530f6ccc5b7bb096c8 (patch) | |
tree | 18ee5a91f1ce6e8d4c964174549ac10f4ab949be /include/items.php | |
parent | 79da33dafdac1427ac07b4414a5da5f9f3a2b03d (diff) | |
download | volse-hubzilla-79223b6b3d38bfbfb3a6d9530f6ccc5b7bb096c8.tar.gz volse-hubzilla-79223b6b3d38bfbfb3a6d9530f6ccc5b7bb096c8.tar.bz2 volse-hubzilla-79223b6b3d38bfbfb3a6d9530f6ccc5b7bb096c8.zip |
item voting tools
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 0b2106572..2207635b6 100755 --- a/include/items.php +++ b/include/items.php @@ -843,9 +843,9 @@ function get_item_elements($x) { if(array_key_exists('flags',$x) && in_array('deleted',$x['flags'])) - $arr['item_restrict'] = ITEM_DELETED; + $arr['item_restrict'] |= ITEM_DELETED; if(array_key_exists('flags',$x) && in_array('hidden',$x['flags'])) - $arr['item_restrict'] = ITEM_HIDDEN; + $arr['item_restrict'] |= ITEM_HIDDEN; // Here's the deal - the site might be down or whatever but if there's a new person you've never // seen before sending stuff to your stream, we MUST be able to look them up and import their data from their |