diff options
author | redmatrix <git@macgirvin.com> | 2016-07-09 19:03:29 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-09 19:03:29 -0700 |
commit | 917a465ccd7dfa4992241b1e5d4418b3a31f1615 (patch) | |
tree | 4743fcfc2e9997d35c1b0ef73317002c98255b64 /include/zot.php | |
parent | e11330a5c8e5111d08d6aee1f4dc6dda6f7c7f2a (diff) | |
download | volse-hubzilla-917a465ccd7dfa4992241b1e5d4418b3a31f1615.tar.gz volse-hubzilla-917a465ccd7dfa4992241b1e5d4418b3a31f1615.tar.bz2 volse-hubzilla-917a465ccd7dfa4992241b1e5d4418b3a31f1615.zip |
more work on perms
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/zot.php b/include/zot.php index 6dd789181..c30940613 100644 --- a/include/zot.php +++ b/include/zot.php @@ -410,10 +410,10 @@ function zot_refresh($them, $channel = null, $force = false) { if($permissions && is_array($permissions)) { foreach($permissions as $k => $v) { // The connected permission means you are in their address book - if($k === 'connected') { - $connected_set = intval($v); - continue; - } + //if($k === 'connected') { + // $connected_set = intval($v); + // continue; + //} if(($v) && (array_key_exists($k,$global_perms))) { $their_perms = $their_perms | intval($global_perms[$k][1]); } |