diff options
author | sullrich <sullrich@pfsense.org> | 2009-12-05 20:25:27 -0500 |
---|---|---|
committer | sullrich <sullrich@pfsense.org> | 2009-12-05 20:25:27 -0500 |
commit | 37d98ce7d69f4b10117cac301d619d7c7c9408e4 (patch) | |
tree | 01897fec8fa2608e147d195f490e0cad26ec7a33 | |
parent | 77f8716504ab24b4a9b056fd6b9fbc7233de56e0 (diff) | |
download | pfsense-37d98ce7d69f4b10117cac301d619d7c7c9408e4.zip pfsense-37d98ce7d69f4b10117cac301d619d7c7c9408e4.tar.gz |
Do not show resolution tr unless browser is posting
-rw-r--r-- | usr/local/www/diag_dns.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/local/www/diag_dns.php b/usr/local/www/diag_dns.php index 9795c24..0ae93fd 100644 --- a/usr/local/www/diag_dns.php +++ b/usr/local/www/diag_dns.php @@ -113,6 +113,7 @@ include("head.inc"); ?> <? } ?> </td> </tr> +<?php if($_POST): ?> <tr> <td width="22%" valign="top" class="vncellreq">Resolution time per server</td> <td width="78%" class="vtable"> @@ -143,6 +144,7 @@ include("head.inc"); ?> </table> </td> </tr> + <?php endif; ?> <?php if (!$input_errors && $ipaddr) { ?> <tr> <td width="22%" valign="top" class="vncell">More Information:</td> |