diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-05-22 15:25:42 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-05-22 15:25:42 -0300 |
commit | 192bac8f5081f35edab78bd51d2a0d3d3493d9ef (patch) | |
tree | 0603030ee9364d7cc99b39fe015afec949e88eb2 /usr | |
parent | 7f38b8753c2e2a7b867d7f8c8b670cd84ee30f90 (diff) | |
parent | 3edbd787e3e0d8dabbc0396e39afaf6fcaed6bee (diff) | |
download | pfsense-192bac8f5081f35edab78bd51d2a0d3d3493d9ef.zip pfsense-192bac8f5081f35edab78bd51d2a0d3d3493d9ef.tar.gz |
Merge pull request #1177 from ExolonDX/branch_master_25
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/diag_ndp.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/usr/local/www/diag_ndp.php b/usr/local/www/diag_ndp.php index bdec04b..2a290d4 100644 --- a/usr/local/www/diag_ndp.php +++ b/usr/local/www/diag_ndp.php @@ -114,8 +114,8 @@ include("head.inc"); <?php include("fbegin.inc"); ?> <div id="loading"> - <img src="/themes/<?=$g['theme'];?>/images/misc/loader.gif"><?= gettext("Loading, please wait..."); ?> - <p/> + <img src="/themes/<?=$g['theme'];?>/images/misc/loader.gif" alt="loader" /><?= gettext("Loading, please wait..."); ?> + <p> </p> </div> <?php @@ -125,10 +125,10 @@ for ($i = 0; $i < ob_get_level(); $i++) { ob_end_flush(); } ob_implicit_flush(1); ?> -<table width="100%" border="0" cellpadding="0" cellspacing="0"> +<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="diag ndp"> <tr> <td> - <table class="tabcont sortable" width="100%" border="0" cellpadding="0" cellspacing="0"> + <table class="tabcont sortable" width="100%" border="0" cellpadding="0" cellspacing="0" summary="tabcont"> <tr> <td class="listhdrr"><?= gettext("IPv6 address"); ?></td> <td class="listhdrr"><?= gettext("MAC address"); ?></td> @@ -170,5 +170,9 @@ ob_implicit_flush(1); <?php include("fend.inc"); ?> <script type="text/javascript"> +//<![CDATA[ jQuery('#loading').html(''); +//]]> </script> +</body> +</html> |