summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/diag_sockets.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/diag_sockets.php')
-rw-r--r--src/usr/local/www/diag_sockets.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/usr/local/www/diag_sockets.php b/src/usr/local/www/diag_sockets.php
index 3a7d6e1..5cad1ac 100644
--- a/src/usr/local/www/diag_sockets.php
+++ b/src/usr/local/www/diag_sockets.php
@@ -100,26 +100,27 @@ $showAllOption = $showAll ? "" : "?showAll";
<thead>
<?php
foreach (explode("\n", $table) as $i => $line) {
- if (trim($line) == "")
+ if (trim($line) == "") {
continue;
+ }
$j = 0;
print("<tr>\n");
foreach (explode(' ', $line) as $entry) {
- if ($entry == '' || $entry == "ADDRESS")
+ if ($entry == '' || $entry == "ADDRESS") {
continue;
+ }
if ($i == 0) {
print("<th class=\"$class\">$entry</th>\n");
- }
- else {
+ } else {
print("<td class=\"$class\">$entry</td>\n");
}
$j++;
}
print("</tr>\n");
- if($i == 0) {
+ if ($i == 0) {
print("</thead>\n");
print("<tbody>\n");
}
OpenPOWER on IntegriCloud