diff options
author | NOYB <Al_Stu@Frontier.com> | 2016-03-29 00:17:31 -0700 |
---|---|---|
committer | NOYB <Al_Stu@Frontier.com> | 2016-03-29 00:17:31 -0700 |
commit | 89140b63943577317e3e83764bdc24a87c815714 (patch) | |
tree | 1f1f9f56a55c779ae8c950ddf72a524939da12c3 /src | |
parent | 88ec4c6f2a1a7172607061b71869a5d28e305820 (diff) | |
download | pfsense-89140b63943577317e3e83764bdc24a87c815714.zip pfsense-89140b63943577317e3e83764bdc24a87c815714.tar.gz |
System / User Manager - Remove Personalizations
Remove "you" personalizations.
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/system_authservers.php | 6 | ||||
-rw-r--r-- | src/usr/local/www/system_groupmanager.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/system_usermanager.php | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/local/www/system_authservers.php b/src/usr/local/www/system_authservers.php index 9b94f4e..654a61f 100644 --- a/src/usr/local/www/system_authservers.php +++ b/src/usr/local/www/system_authservers.php @@ -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.'); diff --git a/src/usr/local/www/system_groupmanager.php b/src/usr/local/www/system_groupmanager.php index 5c2eb3a..94d16da 100644 --- a/src/usr/local/www/system_groupmanager.php +++ b/src/usr/local/www/system_groupmanager.php @@ -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 diff --git a/src/usr/local/www/system_usermanager.php b/src/usr/local/www/system_usermanager.php index 3b6298c..021c819 100644 --- a/src/usr/local/www/system_usermanager.php +++ b/src/usr/local/www/system_usermanager.php @@ -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(); |