summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/status_lb_pool.php
diff options
context:
space:
mode:
authorColin Fleming <cj_fleming@sky.com>2015-11-29 17:37:43 +0000
committerColin Fleming <cj_fleming@sky.com>2015-11-29 17:37:43 +0000
commitc4b60a9a760b7eeffaa0f7aa56ae609fb620550c (patch)
treeb06b931170e585f19c2a9be31b0c4ba4cb95c733 /src/usr/local/www/status_lb_pool.php
parentcbe639a8a2575b3148c9b5069be78b0a89b3b429 (diff)
downloadpfsense-c4b60a9a760b7eeffaa0f7aa56ae609fb620550c.zip
pfsense-c4b60a9a760b7eeffaa0f7aa56ae609fb620550c.tar.gz
Tidy up Boolean operators for HTML5
Remove the XHTML standard Boolean operators (makes reading HTML much simpler).
Diffstat (limited to 'src/usr/local/www/status_lb_pool.php')
-rw-r--r--src/usr/local/www/status_lb_pool.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/status_lb_pool.php b/src/usr/local/www/status_lb_pool.php
index db0ec7d..47fbfce 100644
--- a/src/usr/local/www/status_lb_pool.php
+++ b/src/usr/local/www/status_lb_pool.php
@@ -221,7 +221,7 @@ foreach ($a_pool as $pool):
switch ($server['ip']['state']) {
case 'up':
$bgcolor = LIGHTGREEN; // lightgreen
- $checked = "checked=\"checked\"";
+ $checked = "checked";
break;
case 'disabled':
$bgcolor = WHITE;
@@ -229,7 +229,7 @@ foreach ($a_pool as $pool):
break;
default:
$bgcolor = LIGHTCORAL; // lightcoral
- $checked = "checked=\"checked\"";
+ $checked = "checked";
}
?>
<tr>
OpenPOWER on IntegriCloud