diff options
author | Mario <mario@mariovavti.com> | 2025-07-13 19:39:21 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-07-13 19:39:21 +0000 |
commit | 35be83c5f6e3dd5da36a8a3fb46f8777583c6ae9 (patch) | |
tree | 78427f14d106dff589594d88b2d6654cec0bcf22 /Zotlabs/Module/Channel.php | |
parent | 7b5a638e008f74ea66101792c09741c5a9ceb1ea (diff) | |
parent | 76eed3c06c993ded0bfe32170353110667eb1406 (diff) | |
download | volse-hubzilla-35be83c5f6e3dd5da36a8a3fb46f8777583c6ae9.tar.gz volse-hubzilla-35be83c5f6e3dd5da36a8a3fb46f8777583c6ae9.tar.bz2 volse-hubzilla-35be83c5f6e3dd5da36a8a3fb46f8777583c6ae9.zip |
Merge branch 'fix-permission-context-help' into 'dev'
Fix context help link for permissions
See merge request hubzilla/core!2212
Diffstat (limited to 'Zotlabs/Module/Channel.php')
-rw-r--r-- | Zotlabs/Module/Channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index e35a611d0..a72e70b79 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -266,7 +266,7 @@ class Channel extends Controller { 'default_location' => (($is_owner) ? App::$profile['channel_location'] : ''), 'nickname' => App::$profile['channel_address'], 'lockstate' => (((strlen(App::$profile['channel_allow_cid'])) || (strlen(App::$profile['channel_allow_gid'])) || (strlen(App::$profile['channel_deny_cid'])) || (strlen(App::$profile['channel_deny_gid']))) ? 'lock' : 'unlock'), - 'acl' => (($is_owner) ? populate_acl($channel_acl, true, PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post') : ''), + 'acl' => (($is_owner) ? populate_acl($channel_acl, true, PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'member/permissions') : ''), 'permissions' => $channel_acl, 'showacl' => (($is_owner) ? 'yes' : ''), 'bang' => '', |