aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-03-12 15:47:33 -0700
committerzotlabs <mike@macgirvin.com>2018-03-12 15:47:33 -0700
commit34399b8b47d9a85eb3c4095392ab994792257d88 (patch)
treea314d67ffc3c523a41e1fc2e77e92ce205cd69bb /include/items.php
parent717ae5486806f7f238f6cdafe08c8aefd94056d2 (diff)
downloadvolse-hubzilla-34399b8b47d9a85eb3c4095392ab994792257d88.tar.gz
volse-hubzilla-34399b8b47d9a85eb3c4095392ab994792257d88.tar.bz2
volse-hubzilla-34399b8b47d9a85eb3c4095392ab994792257d88.zip
obscure permission issue with custom permissions when using the highly discouraged advisory privacy modes
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php
index 50f663836..7faa1b9ec 100755
--- a/include/items.php
+++ b/include/items.php
@@ -969,6 +969,10 @@ function import_author_unknown($x) {
return false;
}
+function empty_acl($item) {
+ return (($item['allow_cid'] === EMPTY_STR && $item['allow_gid'] === EMPTY_STR && $item['deny_cid'] === EMPTY_STR && $item['deny_gid'] === EMPTY_STR) ? true : false);
+}
+
function encode_item($item,$mirror = false) {
$x = array();
$x['type'] = 'activity';