diff options
author | Phil Davis <phil.davis@inf.org> | 2016-01-22 20:43:59 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2016-01-22 20:43:59 +0545 |
commit | c40962e95049cabda591d3c0db41e624355f31fe (patch) | |
tree | 7f6aa16291e9d2bac8706793923a7106540fff6e /src/usr/local | |
parent | 53a15834ac2e611ffc236fd451e70efdd66cd5a2 (diff) | |
download | pfsense-c40962e95049cabda591d3c0db41e624355f31fe.zip pfsense-c40962e95049cabda591d3c0db41e624355f31fe.tar.gz |
Make diag_arp info an infoblock
I might find a few of these while looking at various print_info_block calls, but this one for a start that works well as infoblock blockopen.
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/diag_arp.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/usr/local/www/diag_arp.php b/src/usr/local/www/diag_arp.php index 8ec4623..ec93c7f 100644 --- a/src/usr/local/www/diag_arp.php +++ b/src/usr/local/www/diag_arp.php @@ -384,7 +384,12 @@ events.push(function() { //]]> </script> +<div class="infoblock blockopen"> <?php -print_info_box(gettext("Local IPv6 peers use ") . '<a href="diag_ndp.php">' . gettext("NDP") . '</a>' . gettext(" instead of ARP"), 'info'); +print_info_box(gettext("Local IPv6 peers use ") . '<a href="diag_ndp.php">' . gettext("NDP") . '</a>' . gettext(" instead of ARP"), 'info', false); +?> +</div> -include("foot.inc")?> +<?php +include("foot.inc"); +?> |