diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-05-18 21:23:24 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-05-18 21:23:24 +0200 |
commit | c77732b8edfbfa49cd52df4c2ac3b27a55d2ee02 (patch) | |
tree | 59e2b6727b8a46786e006fbaf293754d5496979f | |
parent | 16f79b70e4e3fd572de4d3fc938802fa8c536bca (diff) | |
download | volse-hubzilla-c77732b8edfbfa49cd52df4c2ac3b27a55d2ee02.tar.gz volse-hubzilla-c77732b8edfbfa49cd52df4c2ac3b27a55d2ee02.tar.bz2 volse-hubzilla-c77732b8edfbfa49cd52df4c2ac3b27a55d2ee02.zip |
only show $showall_origin if permission_role is custom. it does not make much sense otherwise since the member is merely using a preset of permissions.
-rw-r--r-- | include/acl_selectors.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 136f8aa50..6b727c9a2 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -230,14 +230,14 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti $allow_cid = $allow_gid = $deny_cid = $deny_gid = false; $showall_origin = ''; $showall_icon = 'fa-globe'; - + $role = get_pconfig(local_channel(),'system','permissions_role'); if(! $emptyACL_description) { $showall_caption = t('Visible to your default audience'); } else if (is_a($emptyACL_description, 'PermissionDescription')) { $showall_caption = $emptyACL_description->get_permission_description(); - $showall_origin = $emptyACL_description->get_permission_origin_description(); + $showall_origin = (($role === 'custom') ? $emptyACL_description->get_permission_origin_description() : ''); $showall_icon = $emptyACL_description->get_permission_icon(); } else { @@ -271,7 +271,7 @@ function populate_acl($defaults = null,$show_jotnets = true, $emptyACL_descripti '$showall' => $showall_caption, '$showallOrigin' => $showall_origin, '$showallIcon' => $showall_icon, - '$select_label' => t('Who can see this'), + '$select_label' => t('Who can see this?'), '$showlimited' => t('Custom selection'), '$showlimitedDesc' => t('Select "Show" to allow viewing. "Don\'t show" lets you override and limit the scope of "Show".'), '$show' => t("Show"), |