aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-04-19 19:32:48 -0700
committerzotlabs <mike@macgirvin.com>2018-04-19 19:32:48 -0700
commitb1ed79f239e3a4517091c0acfd4f0d6cc28a7cab (patch)
tree9a5681439824dbd7096b4b095e71a04614069059 /Zotlabs
parentaea61bf03468d9cda1abff414e7118662a6acd06 (diff)
downloadvolse-hubzilla-b1ed79f239e3a4517091c0acfd4f0d6cc28a7cab.tar.gz
volse-hubzilla-b1ed79f239e3a4517091c0acfd4f0d6cc28a7cab.tar.bz2
volse-hubzilla-b1ed79f239e3a4517091c0acfd4f0d6cc28a7cab.zip
fix link to renamed permission roles doc subsection
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/New_channel.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php
index 60d0d7e0d..d9becbc22 100644
--- a/Zotlabs/Module/New_channel.php
+++ b/Zotlabs/Module/New_channel.php
@@ -146,7 +146,7 @@ class New_channel extends \Zotlabs\Web\Controller {
$name = array('name', t('Name or caption'), ((x($_REQUEST,'name')) ? $_REQUEST['name'] : ''), t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group"'), "*");
$nickhub = '@' . \App::get_hostname();
$nickname = array('nickname', t('Choose a short nickname'), ((x($_REQUEST,'nickname')) ? $_REQUEST['nickname'] : ''), sprintf( t('Your nickname will be used to create an easy to remember channel address e.g. nickname%s'), $nickhub), "*");
- $role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' <a href="help/member/member_guide#Account_Permission_Roles" target="_blank">' . t('Read more about roles') . '</a>',$perm_roles);
+ $role = array('permissions_role' , t('Channel role and privacy'), ($privacy_role) ? $privacy_role : 'social', t('Select a channel role with your privacy requirements.') . ' <a href="help/member/member_guide#Channel_Permission_Roles" target="_blank">' . t('Read more about roles') . '</a>',$perm_roles);
$o = replace_macros(get_markup_template('new_channel.tpl'), array(
'$title' => t('Create Channel'),