diff options
author | ayvis <ayvis.infra@gmail.com> | 2014-03-14 21:24:03 +0100 |
---|---|---|
committer | ayvis <ayvis.infra@gmail.com> | 2014-03-14 21:24:03 +0100 |
commit | 8cd558b61b9c24ee109993d8e76ddc4870ffa4fa (patch) | |
tree | 528f7b2f8ea80e0779907147273d99008e31b5d6 /etc/inc/auth.inc | |
parent | e1d68dde59717fc5f125796f07070a654e28ec43 (diff) | |
download | pfsense-8cd558b61b9c24ee109993d8e76ddc4870ffa4fa.zip pfsense-8cd558b61b9c24ee109993d8e76ddc4870ffa4fa.tar.gz |
xhtml Compliance
replaced <br>, <br/> and </br> with <br />
Diffstat (limited to 'etc/inc/auth.inc')
-rw-r--r-- | etc/inc/auth.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/inc/auth.inc b/etc/inc/auth.inc index c686ff4..cd7934e 100644 --- a/etc/inc/auth.inc +++ b/etc/inc/auth.inc @@ -104,7 +104,7 @@ if (function_exists("display_error_form") && !isset($config['system']['webgui'][ if($found_host == false) { if(!security_checks_disabled()) { - display_error_form("501", gettext("Potential DNS Rebind attack detected, see http://en.wikipedia.org/wiki/DNS_rebinding<br/>Try accessing the router by IP address instead of by hostname.")); + display_error_form("501", gettext("Potential DNS Rebind attack detected, see http://en.wikipedia.org/wiki/DNS_rebinding<br />Try accessing the router by IP address instead of by hostname.")); exit; } $security_passed = false; @@ -1206,7 +1206,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']); } // XXX - billm - somewhere in here we need to handle securid challenge/response @@ -1217,18 +1217,18 @@ 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()) $attributes = $rauth->listAttributes(); $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"); } // close OO RADIUS_AUTHENTICATION |