indicate preference to register/communicate-with real people and not fictitious entities.
This commit is contained in:
parent
bc7035408a
commit
c248b28f92
2 changed files with 5 additions and 1 deletions
|
@ -401,6 +401,8 @@ function register_content(&$a) {
|
||||||
$oidlabel = t("Your OpenID \x28optional\x29: ");
|
$oidlabel = t("Your OpenID \x28optional\x29: ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$realpeople = t('Members of this network prefer to communicate with real people who use their real names.');
|
||||||
|
|
||||||
if(get_config('system','publish_all')) {
|
if(get_config('system','publish_all')) {
|
||||||
$profile_publish_reg = '<input type="hidden" name="profile_publish_reg" value="1" />';
|
$profile_publish_reg = '<input type="hidden" name="profile_publish_reg" value="1" />';
|
||||||
}
|
}
|
||||||
|
@ -423,6 +425,7 @@ function register_content(&$a) {
|
||||||
$o = load_view_file("view/register.tpl");
|
$o = load_view_file("view/register.tpl");
|
||||||
$o = replace_macros($o, array(
|
$o = replace_macros($o, array(
|
||||||
'$oidhtml' => $oidhtml,
|
'$oidhtml' => $oidhtml,
|
||||||
|
'$realpeople' => $realpeople,
|
||||||
'$regtitle' => t('Registration'),
|
'$regtitle' => t('Registration'),
|
||||||
'$registertext' =>((x($a->config,'register_text'))
|
'$registertext' =>((x($a->config,'register_text'))
|
||||||
? '<div class="error-message">' . $a->config['register_text'] . '</div>'
|
? '<div class="error-message">' . $a->config['register_text'] . '</div>'
|
||||||
|
@ -433,7 +436,7 @@ function register_content(&$a) {
|
||||||
'$openid' => $openid_url,
|
'$openid' => $openid_url,
|
||||||
'$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '),
|
'$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '),
|
||||||
'$addrlabel' => t('Your Email Address: '),
|
'$addrlabel' => t('Your Email Address: '),
|
||||||
'$nickdesc' => t('Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.'),
|
'$nickdesc' => t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.'),
|
||||||
'$nicklabel' => t('Choose a nickname: '),
|
'$nicklabel' => t('Choose a nickname: '),
|
||||||
'$photo' => $photo,
|
'$photo' => $photo,
|
||||||
'$publish' => $profile_publish,
|
'$publish' => $profile_publish,
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
$registertext
|
$registertext
|
||||||
|
|
||||||
|
<p id="register-realpeople">$realpeople</p>
|
||||||
|
|
||||||
<p id="register-fill-desc">$fillwith</p>
|
<p id="register-fill-desc">$fillwith</p>
|
||||||
<p id="register-fill-ext">$fillext</p>
|
<p id="register-fill-ext">$fillext</p>
|
||||||
|
|
Loading…
Reference in a new issue