aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-09-21 19:51:08 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-09-21 19:51:08 -0700
commit188dc1fcf8be7476ca912e3e0cd7aa6cef0c9e8c (patch)
tree621153500aba341b1cee98e800fbea70d5132579 /view
parent399b6828f6888ff65d3ace22876c49f0887e88e6 (diff)
downloadvolse-hubzilla-188dc1fcf8be7476ca912e3e0cd7aa6cef0c9e8c.tar.gz
volse-hubzilla-188dc1fcf8be7476ca912e3e0cd7aa6cef0c9e8c.tar.bz2
volse-hubzilla-188dc1fcf8be7476ca912e3e0cd7aa6cef0c9e8c.zip
relationship direction was too confusing to work with. instead of "in,out,both" it's now declared by role e.g. "vip,fan,bud".
Diffstat (limited to 'view')
-rw-r--r--view/acl_selectors.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/acl_selectors.php b/view/acl_selectors.php
index 0366ab2a1..388b75ebb 100644
--- a/view/acl_selectors.php
+++ b/view/acl_selectors.php
@@ -38,7 +38,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
// to one recipient. By default our selector allows multiple selects amongst all contacts.
if($privmail) {
- $sql_extra = sprintf(" AND `rel` = %d ", intval(DIRECTION_BOTH));
+ $sql_extra = sprintf(" AND `rel` = %d ", intval(REL_BUD));
$o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"$size\" >\r\n";
}
else {