diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-21 19:51:08 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-21 19:51:08 -0700 |
commit | 188dc1fcf8be7476ca912e3e0cd7aa6cef0c9e8c (patch) | |
tree | 621153500aba341b1cee98e800fbea70d5132579 /boot.php | |
parent | 399b6828f6888ff65d3ace22876c49f0887e88e6 (diff) | |
download | volse-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 'boot.php')
-rw-r--r-- | boot.php | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -11,10 +11,7 @@ define ( 'REGISTER_CLOSED', 0); define ( 'REGISTER_APPROVE', 1); define ( 'REGISTER_OPEN', 2); -define ( 'DIRECTION_NONE', 0); // No relationship -define ( 'DIRECTION_IN', 1); // VIP e.g. has FAN -define ( 'DIRECTION_OUT', 2); // FAN to a VIP -define ( 'DIRECTION_BOTH', 3); // Mutual Friends +// relationship types define ( 'REL_VIP', 1); define ( 'REL_FAN', 2); |