bugfix: Services were not lined up correctly on mesh status page.

Correct services to be correctly lined up.

Note:
It looks like we need to split the two tables eventually on the mesh status page as the services are pushed to the right.

Saving this however to be done in a future release as we may be doing a revamp of this page for sortable fields in the near future and this would fit in with that.
This commit is contained in:
Conrad Lara - KG6JEI 2015-12-16 21:42:43 -08:00
parent 9d0b7d59e1
commit d6db48fb48
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ if(keys %links)
# add advertised dmz hosts # add advertised dmz hosts
foreach $dmzhost (@{$hosts{$ipmain}{hosts}}) foreach $dmzhost (@{$hosts{$ipmain}{hosts}})
{ {
$rows{$host} .= "<tr><td valign=top><nobr>&nbsp;<img src='/dot.png'>$dmzhost</nobr></td><td colspan=3></td><td>\n"; $rows{$host} .= "<tr><td valign=top><nobr>&nbsp;<img src='/dot.png'>$dmzhost</nobr></td><td colspan=4></td><td>\n";
foreach(sort keys %{$services{$dmzhost}}) { $rows{$host} .= $services{$dmzhost}{$_} . "<br>\n" } foreach(sort keys %{$services{$dmzhost}}) { $rows{$host} .= $services{$dmzhost}{$_} . "<br>\n" }
$rows{$host} .= "</td></tr>\n"; $rows{$host} .= "</td></tr>\n";
} }