diff options
author | Treer <treer.git@the-bordello.com> | 2016-05-08 20:44:30 +1000 |
---|---|---|
committer | Treer <treer.git@the-bordello.com> | 2016-05-08 20:44:30 +1000 |
commit | e7a65c1f8d97b92e311beb064a7094216e23b119 (patch) | |
tree | 94100e6e3e1822f82934f3ba977db6df12d09202 /boot.php | |
parent | 2b77c9a74bf4393dd3894420e602e7212c29ba42 (diff) | |
download | volse-hubzilla-e7a65c1f8d97b92e311beb064a7094216e23b119.tar.gz volse-hubzilla-e7a65c1f8d97b92e311beb064a7094216e23b119.tar.bz2 volse-hubzilla-e7a65c1f8d97b92e311beb064a7094216e23b119.zip |
improve non-ACL option description in ACL dialog
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 17 |
1 files changed, 8 insertions, 9 deletions
@@ -313,15 +313,14 @@ define ( 'PERMS_A_REPUBLISH', 0x10000); define ( 'PERMS_W_LIKE', 0x20000); // General channel permissions - -define ( 'PERMS_PUBLIC' , 0x0001 ); -define ( 'PERMS_NETWORK' , 0x0002 ); -define ( 'PERMS_SITE' , 0x0004 ); -define ( 'PERMS_CONTACTS' , 0x0008 ); -define ( 'PERMS_SPECIFIC' , 0x0080 ); -define ( 'PERMS_AUTHED' , 0x0100 ); -define ( 'PERMS_PENDING' , 0x0200 ); - + // 0 = Only you +define ( 'PERMS_PUBLIC' , 0x0001 ); // anybody +define ( 'PERMS_NETWORK' , 0x0002 ); // anybody in this network +define ( 'PERMS_SITE' , 0x0004 ); // anybody on this site +define ( 'PERMS_CONTACTS' , 0x0008 ); // any of my connections +define ( 'PERMS_SPECIFIC' , 0x0080 ); // only specific connections +define ( 'PERMS_AUTHED' , 0x0100 ); // anybody authenticated (could include visitors from other networks) +define ( 'PERMS_PENDING' , 0x0200 ); // any connections including those who haven't yet been approved // Address book flags |