From d6db48fb488f7c9df791884fdc7a4df3aac1e0b8 Mon Sep 17 00:00:00 2001 From: Conrad Lara - KG6JEI Date: Wed, 16 Dec 2015 21:42:43 -0800 Subject: [PATCH] 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. --- files/www/cgi-bin/mesh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/www/cgi-bin/mesh b/files/www/cgi-bin/mesh index 0a4bdefd..095668db 100755 --- a/files/www/cgi-bin/mesh +++ b/files/www/cgi-bin/mesh @@ -426,7 +426,7 @@ if(keys %links) # add advertised dmz hosts foreach $dmzhost (@{$hosts{$ipmain}{hosts}}) { - $rows{$host} .= " $dmzhost\n"; + $rows{$host} .= " $dmzhost\n"; foreach(sort keys %{$services{$dmzhost}}) { $rows{$host} .= $services{$dmzhost}{$_} . "
\n" } $rows{$host} .= "\n"; }