diff options
author | Mario <mario@mariovavti.com> | 2021-04-15 13:10:20 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-04-15 13:10:20 +0000 |
commit | c2b9fc1a4947868c1bc0d3d0bff73e49eb5882c4 (patch) | |
tree | 022487768e2595c76879fea5ec4fa44d42cd3ec3 /Zotlabs/Module | |
parent | 4d3a555b53f3fdd710d7d502bb812d9a565a35f4 (diff) | |
download | volse-hubzilla-c2b9fc1a4947868c1bc0d3d0bff73e49eb5882c4.tar.gz volse-hubzilla-c2b9fc1a4947868c1bc0d3d0bff73e49eb5882c4.tar.bz2 volse-hubzilla-c2b9fc1a4947868c1bc0d3d0bff73e49eb5882c4.zip |
register: add help text to the message field
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Register.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php index 1188651bd..601828d5c 100644 --- a/Zotlabs/Module/Register.php +++ b/Zotlabs/Module/Register.php @@ -536,9 +536,9 @@ class Register extends Controller { $nickhub = '@' . str_replace(array('http://','https://','/'), '', get_config('system','baseurl')); $nickname = array('nickname', t('Choose a short nickname'), ((x($_REQUEST,'nickname')) ? $_REQUEST['nickname'] : ''), t('Your nickname will be used to create an easy to remember channel address'), '', '', $duty['atform']); - $tos = array('tos', $label_tos, ((x($_REQUEST,'tos')) ? $_REQUEST['tos'] : ''), '', [t('no'),t('yes')], $duty['atform']); + $tos = array('tos', $label_tos, ((x($_REQUEST,'tos')) ? $_REQUEST['tos'] : ''), '', [t('No'),t('Yes')], $duty['atform']); - $register_msg = ['register_msg', t('Why do you want to join this hub?'), ((x($_REQUEST,'register_msg')) ? $_REQUEST['register_msg'] : '')]; + $register_msg = ['register_msg', t('Why do you want to join this hub?'), ((x($_REQUEST,'register_msg')) ? $_REQUEST['register_msg'] : ''), t('This will help to review your registrtation')]; require_once('include/bbcode.php'); |