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 /usr/local/www/system.php | |
parent | e1d68dde59717fc5f125796f07070a654e28ec43 (diff) | |
download | pfsense-8cd558b61b9c24ee109993d8e76ddc4870ffa4fa.zip pfsense-8cd558b61b9c24ee109993d8e76ddc4870ffa4fa.tar.gz |
xhtml Compliance
replaced <br>, <br/> and </br> with <br />
Diffstat (limited to 'usr/local/www/system.php')
-rw-r--r--[-rwxr-xr-x] | usr/local/www/system.php | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/usr/local/www/system.php b/usr/local/www/system.php index 28811b7..be5446e 100755..100644 --- a/usr/local/www/system.php +++ b/usr/local/www/system.php @@ -301,10 +301,10 @@ include("head.inc"); <tr> <td width="22%" valign="top" class="vncellreq"><?=gettext("Hostname"); ?></td> <td width="78%" class="vtable"> <input name="hostname" type="text" class="formfld unknown" id="hostname" size="40" value="<?=htmlspecialchars($pconfig['hostname']);?>" /> - <br/> + <br /> <span class="vexpl"> <?=gettext("Name of the firewall host, without domain part"); ?> - <br/> + <br /> <?=gettext("e.g."); ?> <em>firewall</em> </span> </td> @@ -312,10 +312,10 @@ include("head.inc"); <tr> <td width="22%" valign="top" class="vncellreq"><?=gettext("Domain"); ?></td> <td width="78%" class="vtable"> <input name="domain" type="text" class="formfld unknown" id="domain" size="40" value="<?=htmlspecialchars($pconfig['domain']);?>" /> - <br/> + <br /> <span class="vexpl"> <?=gettext("Do not use 'local' as a domain name. It will cause local hosts running mDNS (avahi, bonjour, etc.) to be unable to resolve local hosts not running mDNS."); ?> - <br/> + <br /> <?=gettext("e.g."); ?> <em><?=gettext("mycorp.com, home, office, private, etc."); ?></em> </span> </td> @@ -323,7 +323,7 @@ include("head.inc"); <tr> <td width="22%" valign="top" class="vncell"><?=gettext("DNS servers"); ?></td> <td width="78%" class="vtable"> - <br/> + <br /> <table summary="dns servers and gateways"> <tr> <td><b><?=gettext("DNS Server"); ?></b></td> @@ -377,19 +377,19 @@ include("head.inc"); <span class="vexpl"> <?=gettext("Enter IP addresses to be used by the system for DNS resolution. " . "These are also used for the DHCP service, DNS forwarder and for PPTP VPN clients."); ?> - <br/> + <br /> <?php if($multiwan): ?> - <br/> + <br /> <?=gettext("In addition, optionally select the gateway for each DNS server. " . "When using multiple WAN connections there should be at least one unique DNS server per gateway."); ?> - <br/> + <br /> <?php endif; ?> - <br/> + <br /> <input name="dnsallowoverride" type="checkbox" id="dnsallowoverride" value="yes" <?php if ($pconfig['dnsallowoverride']) echo "checked=\"checked\""; ?> /> <strong> <?=gettext("Allow DNS server list to be overridden by DHCP/PPP on WAN"); ?> </strong> - <br/> + <br /> <?php printf(gettext("If this option is set, %s will " . "use DNS servers assigned by a DHCP/PPP server on WAN " . "for its own purposes (including the DNS forwarder). " . @@ -418,7 +418,7 @@ include("head.inc"); </option> <?php endforeach; ?> </select> - <br/> + <br /> <span class="vexpl"> <?=gettext("Select the location closest to you"); ?> </span> @@ -429,7 +429,7 @@ include("head.inc"); <td width="22%" valign="top" class="vncell">Time update interval</td> <td width="78%" class="vtable"> <input name="timeupdateinterval" type="text" class="formfld unknown" id="timeupdateinterval" size="4" value="<?=htmlspecialchars($pconfig['timeupdateinterval']);?>" /> - <br/> + <br /> <span class="vexpl"> Minutes between network time sync. 300 recommended, or 0 to disable @@ -441,7 +441,7 @@ include("head.inc"); <td width="22%" valign="top" class="vncell"><?=gettext("NTP time server"); ?></td> <td width="78%" class="vtable"> <input name="timeservers" type="text" class="formfld unknown" id="timeservers" size="40" value="<?=htmlspecialchars($pconfig['timeservers']);?>" /> - <br/> + <br /> <span class="vexpl"> <?=gettext("Use a space to separate multiple hosts (only one " . "required). Remember to set up at least one DNS server " . |