diff options
author | Treer <treer.git@the-bordello.com> | 2016-07-03 17:59:44 +1000 |
---|---|---|
committer | Treer <treer.git@the-bordello.com> | 2016-07-03 17:59:44 +1000 |
commit | b87106b6fe735365587d7683d8b639e0cf37842c (patch) | |
tree | 6a64147cc65eea2dcac888502b9799ddeed5e475 /Zotlabs/Module | |
parent | 523e7b5084b1ae62e151d1183f5150ffd9d9e60c (diff) | |
download | volse-hubzilla-b87106b6fe735365587d7683d8b639e0cf37842c.tar.gz volse-hubzilla-b87106b6fe735365587d7683d8b639e0cf37842c.tar.bz2 volse-hubzilla-b87106b6fe735365587d7683d8b639e0cf37842c.zip |
Mark nickname as required field, if left empty then channel creation fails silently
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/New_channel.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php index 1dcf84fb0..26883b6e2 100644 --- a/Zotlabs/Module/New_channel.php +++ b/Zotlabs/Module/New_channel.php @@ -125,9 +125,9 @@ 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"')); + $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)); + $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), "*"); $privacy_role = ((x($_REQUEST,'permissions_role')) ? $_REQUEST['permissions_role'] : "" ); $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>',get_roles()); |