diff options
author | friendica <info@friendica.com> | 2014-04-13 18:07:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-04-13 18:07:19 -0700 |
commit | e3aa7d2aaf223d0edfe9665adad59bcb0affade9 (patch) | |
tree | 9afa4fd9d26b1902ae4b885a5225cbeefbdbb847 | |
parent | 08435e5b1a4970d703d0096bf6b97839abf452d0 (diff) | |
download | volse-hubzilla-e3aa7d2aaf223d0edfe9665adad59bcb0affade9.tar.gz volse-hubzilla-e3aa7d2aaf223d0edfe9665adad59bcb0affade9.tar.bz2 volse-hubzilla-e3aa7d2aaf223d0edfe9665adad59bcb0affade9.zip |
only show forum tags on contact autocomplete, not in the ACL selector
-rw-r--r-- | mod/acl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/acl.php b/mod/acl.php index 3b737d36e..0f997c8b8 100644 --- a/mod/acl.php +++ b/mod/acl.php @@ -206,7 +206,7 @@ function acl_init(&$a){ if(count($r)) { foreach($r as $g){ - if($g['abook_their_perms'] & PERMS_W_TAGWALL) { + if(($g['abook_their_perms'] & PERMS_W_TAGWALL) && $type == 'c') { $contacts[] = array( "type" => "c", "photo" => "images/twopeople.png", |