diff options
author | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-06-29 19:40:58 -0300 |
---|---|---|
committer | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-06-29 19:40:58 -0300 |
commit | da652a469a957d82b8076b205e804d74ebeb7b4e (patch) | |
tree | 11b19fff41a3d6cd0a4abfc86464d7560d2c8aa2 /usr/local | |
parent | 69345bc1d71c32a2528d1d1970c700d8478d7db6 (diff) | |
download | pfsense-da652a469a957d82b8076b205e804d74ebeb7b4e.zip pfsense-da652a469a957d82b8076b205e804d74ebeb7b4e.tar.gz |
Fixing syntax errors
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/diag_dns.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/diag_dns.php b/usr/local/www/diag_dns.php index a82628d..081b765 100644 --- a/usr/local/www/diag_dns.php +++ b/usr/local/www/diag_dns.php @@ -68,7 +68,7 @@ if ($_POST) { } } - $type = gettext("unknown"); + $type = "unknown"; $resolved = ""; $ipaddr = ""; $hostname = ""; @@ -106,7 +106,7 @@ include("head.inc"); ?> <td colspan="2" valign="top" class="listtopic"> <?=gettext("Resolve DNS hostname or IP");?></td> </tr> <tr> - <td width="22%" valign="top" class="vncellreq">gettext("Hostname or IP");?></td> + <td width="22%" valign="top" class="vncellreq"><?=gettext("Hostname or IP");?></td> <td width="78%" class="vtable"> <?=$mandfldhtml;?><input name="host" type="text" class="formfld" id="host" size="20" value="<?=htmlspecialchars($host);?>"> <? if ($resolved && $type) { ?> @@ -124,7 +124,7 @@ include("head.inc"); ?> <b><?=gettext("Server");?></b> </td> <td> - <b><?=gettext("Query time");></b> + <b><?=gettext("Query time");?></b> </td> </tr> <?php |