diff options
author | Colin Fleming <cj_fleming@sky.com> | 2015-12-01 12:29:01 +0000 |
---|---|---|
committer | Colin Fleming <cj_fleming@sky.com> | 2015-12-01 12:29:01 +0000 |
commit | 6cb05fa7bbf72853963df02a850bb3d5468163c7 (patch) | |
tree | 3981c65a81950f021437f5af4fd4797dcf041ebb | |
parent | 1c2b6edfcae2d943858d54370a53ca851a316bad (diff) | |
download | pfsense-6cb05fa7bbf72853963df02a850bb3d5468163c7.zip pfsense-6cb05fa7bbf72853963df02a850bb3d5468163c7.tar.gz |
Tidy up traffice shaper
*shaper.inc*
Remove stray closing B tag
*firewall_shaper.php*
Remove self closing element, not required in HTML5
-rw-r--r-- | src/etc/inc/shaper.inc | 2 | ||||
-rw-r--r-- | src/usr/local/www/firewall_shaper.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/inc/shaper.inc b/src/etc/inc/shaper.inc index d78326b..7249c0b 100644 --- a/src/etc/inc/shaper.inc +++ b/src/etc/inc/shaper.inc @@ -4700,7 +4700,7 @@ function build_iface_without_this_queue($iface, $qname) { } -$default_shaper_msg = sprintf(gettext("Welcome to the %s Traffic Shaper."), $g['product_name']) . "</b><br />"; +$default_shaper_msg = sprintf(gettext("Welcome to the %s Traffic Shaper."), $g['product_name']) . "<br />"; $default_shaper_msg .= gettext("The tree on the left helps you navigate through the queues.<br />" . "Buttons at the bottom represent queue actions and are activated accordingly."); diff --git a/src/usr/local/www/firewall_shaper.php b/src/usr/local/www/firewall_shaper.php index 0251ab8..d3eb363 100644 --- a/src/usr/local/www/firewall_shaper.php +++ b/src/usr/local/www/firewall_shaper.php @@ -449,7 +449,7 @@ print($tree); if (count($altq_list_queues) > 0) { ?> - <a href="firewall_shaper.php?action=resetall" class="btn btn-sm btn-danger"/> + <a href="firewall_shaper.php?action=resetall" class="btn btn-sm btn-danger"> <?=gettext('Remove Shaper')?> </a> <?php |