aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-25 23:02:48 -0700
committerzotlabs <mike@macgirvin.com>2017-05-25 23:02:48 -0700
commit938a6218104d08e44dc2daf2a3884f96a4c6aa31 (patch)
tree63f3b2845d5a9c758deddf922bdb25d112f91384 /Zotlabs
parent583a047e83dd4fe353d996308f86f16ca0c884e8 (diff)
downloadvolse-hubzilla-938a6218104d08e44dc2daf2a3884f96a4c6aa31.tar.gz
volse-hubzilla-938a6218104d08e44dc2daf2a3884f96a4c6aa31.tar.bz2
volse-hubzilla-938a6218104d08e44dc2daf2a3884f96a4c6aa31.zip
update the link to account roles help on register page
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Register.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php
index 1d8944d8e..d1986bea5 100644
--- a/Zotlabs/Module/Register.php
+++ b/Zotlabs/Module/Register.php
@@ -237,7 +237,7 @@ class Register 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 = '@' . str_replace(array('http://','https://','/'), '', get_config('system','baseurl'));
$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/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#Account_Permission_Roles" target="_blank">' . t('Read more about roles') . '</a>',$perm_roles);
$tos = array('tos', $label_tos, '', '', array(t('no'),t('yes')));
$server_role = get_config('system','server_role');