Merge pull request #2805 from NOYB/System_/_User_Manager_-_Remove_Personalizations

This commit is contained in:
jim-p 2016-03-29 10:34:55 -04:00
commit fa01047ddd
3 changed files with 5 additions and 5 deletions

View File

@ -84,7 +84,7 @@ if ($_REQUEST['ajax']) {
$ous = ldap_get_user_ous(true, $authcfg);
if (empty($ous)) {
print('<span class="text-danger">Could not connect to the LDAP server. Please check your LDAP configuration.</span>');
print('<span class="text-danger">Could not connect to the LDAP server. Please check the LDAP configuration.</span>');
} else {
$modal = new Modal("Select LDAP containers for authentication", "containers", true);
$group = new Form_MultiCheckboxGroup('Containers');
@ -632,7 +632,7 @@ $group->add(new Form_Input(
'text',
$pconfig['ldap_authcn']
))->setHelp('Note: Semi-Colon separated. This will be prepended to the search '.
'base dn above or you can specify full container path containing a dc= '.
'base dn above or the full container path can be specified containing a dc= '.
'component.<br/>Example: CN=Users;DC=example,DC=com or OU=Staff;OU=Freelancers');
$group->add(new Form_Button(
@ -805,7 +805,7 @@ $section->addInput(new Form_Input(
$pconfig['radius_timeout']
))->setHelp('This value controls how long, in seconds, that the RADIUS '.
'server may take to respond to an authentication request. If left blank, the '.
'default value is 5 seconds. NOTE: If you are using an interactive two-factor '.
'default value is 5 seconds. NOTE: If using an interactive two-factor '.
'authentication system, increase this timeout to account for how long it will '.
'take the user to receive and enter a token.');

View File

@ -406,7 +406,7 @@ $section->addInput(new Form_Input(
'Description',
'text',
$pconfig['description']
))->setHelp('Group description, for your own information only');
))->setHelp('Group description, for administrative information only');
$form->add($section);
if ($pconfig['gid'] != 1998) { // all users group

View File

@ -660,7 +660,7 @@ if ($act == "new" || $act == "edit" || $input_errors):
'Full name',
'text',
htmlspecialchars($pconfig['descr'])
))->setHelp('User\'s full name, for your own information only');
))->setHelp('User\'s full name, for administrative information only');
if ($ro) {
$input->setDisabled();