aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/New_channel.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-05-20 20:19:11 -0700
committerzotlabs <mike@macgirvin.com>2018-05-20 20:19:11 -0700
commit0044906fabbfeb837326982bbc8d3fcc64b47fa8 (patch)
treeaa855fe68a468626b15f9b954c000680bb405b0b /Zotlabs/Module/New_channel.php
parentac8706e919d62a3a487fe3776e03160454ca8992 (diff)
parent469809183d232761b8984848c133f9f11f5e7cea (diff)
downloadvolse-hubzilla-0044906fabbfeb837326982bbc8d3fcc64b47fa8.tar.gz
volse-hubzilla-0044906fabbfeb837326982bbc8d3fcc64b47fa8.tar.bz2
volse-hubzilla-0044906fabbfeb837326982bbc8d3fcc64b47fa8.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'Zotlabs/Module/New_channel.php')
-rw-r--r--Zotlabs/Module/New_channel.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/Zotlabs/Module/New_channel.php b/Zotlabs/Module/New_channel.php
index df7da2fe8..c946961bc 100644
--- a/Zotlabs/Module/New_channel.php
+++ b/Zotlabs/Module/New_channel.php
@@ -137,16 +137,19 @@ class New_channel extends \Zotlabs\Web\Controller {
}
}
- $name_help = (($default_role)
+ $name_help = '<span id="name_help_loading" style="display:none">' . t('Loading') . '</span><span id="name_help_text">';
+ $name_help .= (($default_role)
? t('Your real name is recommended.')
: t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group"')
- );
-
- $nick_help = t('This will be used to create a unique network address (like an email address).');
+ );
+ $name_help .= '</span>';
+ $nick_help = '<span id="nick_help_loading" style="display:none">' . t('Loading') . '</span><span id="nick_help_text">';
+ $nick_help .= t('This will be used to create a unique network address (like an email address).');
if(! get_config('system','unicode_usernames')) {
$nick_help .= ' ' . t('Allowed characters are a-z 0-9, - and _');
}
+ $nick_help .= '<span>';
$privacy_role = ((x($_REQUEST,'permissions_role')) ? $_REQUEST['permissions_role'] : "" );