summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
authordoktornotor <notordoktor@gmail.com>2016-12-19 12:21:13 +0100
committerGitHub <noreply@github.com>2016-12-19 12:21:13 +0100
commitc69a1a745045cbb7feef216ee97fcb72a00558ec (patch)
tree66051e3131697b8581ca68a529633d6172746b5b /src/usr
parentac90c9012453c7e81ff0d0b472a55b116866c56e (diff)
downloadpfsense-c69a1a745045cbb7feef216ee97fcb72a00558ec.zip
pfsense-c69a1a745045cbb7feef216ee97fcb72a00558ec.tar.gz
status_queues.php - remove redundant escaping
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/local/www/status_queues.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/status_queues.php b/src/usr/local/www/status_queues.php
index 53bac63..555e83d 100644
--- a/src/usr/local/www/status_queues.php
+++ b/src/usr/local/www/status_queues.php
@@ -242,7 +242,7 @@ function processQueues($altqstats, $level, $parent_name) {
$cpuUsage = 0;
print('<td>');
print('<div class="progress" style="height: 7px;width: 170px;">');
- print(' <div class="progress-bar" role="progressbar" id="queue' . $q['name'] . $q['interface'] . 'width" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: ' . $cpuUsage*100 . '%;\"></div>');
+ print(' <div class="progress-bar" role="progressbar" id="queue' . $q['name'] . $q['interface'] . 'width" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: ' . $cpuUsage*100 . '%;"></div>');
print(' </div>');
print('</td>');
print('<td><input readonly style="border:0;width:70px;text-align:right;" name="queue' . $q['name'] . $q['interface'] . 'pps" id="queue' . $q['name'] . $q['interface'] . 'pps" value="(' . gettext("Loading") . ')" /></td>');
OpenPOWER on IntegriCloud