diff options
-rw-r--r-- | src/etc/inc/auth.inc | 8 | ||||
-rw-r--r-- | src/etc/inc/captiveportal.inc | 2 | ||||
-rw-r--r-- | src/usr/local/www/guiconfig.inc | 2 | ||||
-rw-r--r-- | src/usr/local/www/services_pppoe_edit.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/system_authservers.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/wizards/openvpn_wizard.xml | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/src/etc/inc/auth.inc b/src/etc/inc/auth.inc index a5f0ff4..95c630b 100644 --- a/src/etc/inc/auth.inc +++ b/src/etc/inc/auth.inc @@ -1386,7 +1386,7 @@ function radius_backed($username, $passwd, $authcfg, &$attributes = array()) { $retvalue['auth_val'] = 1; $retvalue['error'] = $rauth->getError(); if ($debug) { - printf(gettext("Radius start: %s<br />\n"), $retvalue['error']); + printf(gettext("RADIUS start: %s<br />\n"), $retvalue['error']); } } @@ -1398,7 +1398,7 @@ function radius_backed($username, $passwd, $authcfg, &$attributes = array()) { $retvalue['auth_val'] = 1; $retvalue['error'] = $result->getMessage(); if ($debug) { - printf(gettext("Radius send failed: %s<br />\n"), $retvalue['error']); + printf(gettext("RADIUS send failed: %s<br />\n"), $retvalue['error']); } } else if ($result === true) { if ($rauth->getAttributes()) { @@ -1406,13 +1406,13 @@ function radius_backed($username, $passwd, $authcfg, &$attributes = array()) { } $retvalue['auth_val'] = 2; if ($debug) { - printf(gettext("Radius Auth succeeded")."<br />\n"); + printf(gettext("RADIUS Auth succeeded")."<br />\n"); } $ret = true; } else { $retvalue['auth_val'] = 3; if ($debug) { - printf(gettext("Radius Auth rejected")."<br />\n"); + printf(gettext("RADIUS Auth rejected")."<br />\n"); } } diff --git a/src/etc/inc/captiveportal.inc b/src/etc/inc/captiveportal.inc index 1714a40..2921af2 100644 --- a/src/etc/inc/captiveportal.inc +++ b/src/etc/inc/captiveportal.inc @@ -1300,7 +1300,7 @@ function captiveportal_init_radius_servers() { $cprdsrvlck = lock("captiveportalradius{$cpzone}", LOCK_EX); $fd = @fopen("{$g['vardb_path']}/captiveportal_radius_{$cpzone}.db", "w"); if (!$fd) { - captiveportal_syslog("Error: cannot open radius DB file in captiveportal_configure().\n"); + captiveportal_syslog("Error: cannot open RADIUS DB file in captiveportal_configure().\n"); unlock($cprdsrvlck); return 1; } diff --git a/src/usr/local/www/guiconfig.inc b/src/usr/local/www/guiconfig.inc index 175f540..9117b08 100644 --- a/src/usr/local/www/guiconfig.inc +++ b/src/usr/local/www/guiconfig.inc @@ -150,7 +150,7 @@ $firewall_rules_dscp_types = array( $auth_server_types = array( 'ldap' => "LDAP", - 'radius' => "Radius"); + 'radius' => "RADIUS"); $ldap_urltypes = array( 'TCP - Standard' => 389, diff --git a/src/usr/local/www/services_pppoe_edit.php b/src/usr/local/www/services_pppoe_edit.php index 63d87e6..e7b6053 100644 --- a/src/usr/local/www/services_pppoe_edit.php +++ b/src/usr/local/www/services_pppoe_edit.php @@ -435,7 +435,7 @@ $section->addInput(new Form_Input( $section->addInput(new Form_Checkbox( 'radiusissueips', - 'Radius Issued IP Addresses', + 'RADIUS Issued IP Addresses', 'Assign IP Addresses to users via RADIUS server reply attributes', $pconfig['radiusissueips'] )); diff --git a/src/usr/local/www/system_authservers.php b/src/usr/local/www/system_authservers.php index da9f4cf..8f22868 100644 --- a/src/usr/local/www/system_authservers.php +++ b/src/usr/local/www/system_authservers.php @@ -689,7 +689,7 @@ $section->addInput(new Form_Checkbox( $form->add($section); // ==== RADIUS section ======================================================== -$section = new Form_Section('Radius Server Settings'); +$section = new Form_Section('RADIUS Server Settings'); $section->addClass('toggle-radius collapse'); $section->addInput(new Form_Input( diff --git a/src/usr/local/www/wizards/openvpn_wizard.xml b/src/usr/local/www/wizards/openvpn_wizard.xml index 8eee453..21220d8 100644 --- a/src/usr/local/www/wizards/openvpn_wizard.xml +++ b/src/usr/local/www/wizards/openvpn_wizard.xml @@ -56,7 +56,7 @@ <value>ldap</value> </option> <option> - <name>Radius</name> + <name>RADIUS</name> <value>radius</value> </option> </options> |