diff options
author | Bill Marquette <billm@pfsense.org> | 2005-09-15 04:09:57 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-09-15 04:09:57 +0000 |
commit | 6090e85b9a1994487c32411a45cbef44a67e7c42 (patch) | |
tree | 75e021ae0f76dec46a4079ab9ed3662edd806955 /usr | |
parent | 1d67d91614c6502e259c915858833c210996835b (diff) | |
download | pfsense-6090e85b9a1994487c32411a45cbef44a67e7c42.zip pfsense-6090e85b9a1994487c32411a45cbef44a67e7c42.tar.gz |
Move arp table back onto the screen
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/diag_arp.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr/local/www/diag_arp.php b/usr/local/www/diag_arp.php index a1994fa..beca7d1 100755 --- a/usr/local/www/diag_arp.php +++ b/usr/local/www/diag_arp.php @@ -32,9 +32,14 @@ require("guiconfig.inc"); $pgtitle = "Diagnostics: ARP Table"; include("head.inc"); -include("fbegin.inc"); ?> <body link="#000000" vlink="#000000" alink="#000000"> +<? include("fbegin.inc"); ?> +<p class="pgtitle"><?=$pgtitle?></p> +<table width="100%" border="0" cellpadding="0" cellspacing="0"> + <tr> + <td> + <?php @@ -196,5 +201,6 @@ function getHostName($mac,$ip) </tr> <?php endforeach; ?> </table> +</td></tr></table> <?php include("fend.inc"); ?> |