diff options
author | Jim P <jim@pingle.org> | 2013-03-22 08:10:46 -0700 |
---|---|---|
committer | Jim P <jim@pingle.org> | 2013-03-22 08:10:46 -0700 |
commit | 327e6f2dae6725614005b2970a2808c660d9c63e (patch) | |
tree | 29d67a4917a4ed2ea1b426499cc5de7e2f2cdda9 /usr/local | |
parent | 9d5c05443a8748df6e124f84a4a75da07e0e6f3a (diff) | |
parent | 4271dfb8d48d50159336ba87d061e01656bf3ee0 (diff) | |
download | pfsense-327e6f2dae6725614005b2970a2808c660d9c63e.zip pfsense-327e6f2dae6725614005b2970a2808c660d9c63e.tar.gz |
Merge pull request #493 from ExolonDX/branch_05
Tidy up "traffic shaper wizard" XHTML
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/firewall_shaper_wizards.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/usr/local/www/firewall_shaper_wizards.php b/usr/local/www/firewall_shaper_wizards.php index 1db1add..455b932 100755 --- a/usr/local/www/firewall_shaper_wizards.php +++ b/usr/local/www/firewall_shaper_wizards.php @@ -79,23 +79,24 @@ $wizards = array(gettext("Single Lan multi Wan") => "traffic_shaper_wizard.xml", gettext("Dedicated Links") => "traffic_shaper_wizard_dedicated.xml", ); +$closehead = false; include("head.inc"); ?> +<link rel="stylesheet" type="text/css" media="all" href="./tree/tree.css" /> +</head> <body link="#0000CC" vlink="#0000CC" alink="#0000CC" > -<link rel="stylesheet" type="text/css" media="all" href="./tree/tree.css" /> -<?php -include("fbegin.inc"); -?> + +<?php include("fbegin.inc"); ?> <?php if ($input_errors) print_input_errors($input_errors); ?> <form action="firewall_shaper_wizards.php" method="post" id="iform" name="iform"> <?php if ($savemsg) print_info_box($savemsg); ?> <?php if (is_subsystem_dirty('shaper')): ?><p> -<?php print_info_box_np(gettext("The traffic shaper configuration has been changed.")."<br>".gettext("You must apply the changes in order for them to take effect."));?><br> +<?php print_info_box_np(gettext("The traffic shaper configuration has been changed.")."<br/>".gettext("You must apply the changes in order for them to take effect."));?><br/></p> <?php endif; ?> -<table width="100%" border="0" cellpadding="0" cellspacing="0"> +<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="traffic shaper wizard"> <tr><td> <?php $tab_array = array(); @@ -110,10 +111,10 @@ include("fbegin.inc"); <tr> <td> <div id="mainarea"> - <table width="100%" border="0" cellpadding="0" cellspacing="0"> + <table width="100%" border="0" cellpadding="0" cellspacing="0" summary="main area"> <tr> - <td class="listhdrr" width="25%" align="center" ><?=gettext("Wizard function");?></td> - <td class="listhdrr" width="75%" align="center"><?=gettext("Wizard Link");?></td> + <td class="listhdrr" width="25%" align="center" ><?=gettext("Wizard function");?></td> + <td class="listhdrr" width="75%" align="center"><?=gettext("Wizard Link");?></td> </tr> <?php foreach ($wizards as $key => $wizard): ?> <tr class="tabcont"><td class="listlr" style="background-color: #e0e0e0" width="25%" align="center"> @@ -128,7 +129,6 @@ include("fbegin.inc"); </tr> </table> </form> -<?php include("fend.inc"); -?> +<?php include("fend.inc"); ?> </body> </html> |