diff options
author | Colin Fleming <cj_fleming@sky.com> | 2014-05-17 13:29:55 +0100 |
---|---|---|
committer | Colin Fleming <cj_fleming@sky.com> | 2014-05-17 13:29:55 +0100 |
commit | 3edbd787e3e0d8dabbc0396e39afaf6fcaed6bee (patch) | |
tree | 09c129a50f96c317b04a5a74bb961c9663253969 /usr | |
parent | 024068017f98572f6bd41b7ba542fc36fccee39a (diff) | |
download | pfsense-3edbd787e3e0d8dabbc0396e39afaf6fcaed6bee.zip pfsense-3edbd787e3e0d8dabbc0396e39afaf6fcaed6bee.tar.gz |
Tidy up "diag_ndp.php" XHTML
Close IMG tag and ALT to IMG
Add SUMMARY to TABLES
Add CDATA section to SCRIPT
Add missing closing BODY and closing HTML tags
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> |