This commit is contained in:
zzz
2012-01-22 16:15:18 +00:00
parent 256b05531e
commit 9252d6f9ca
2 changed files with 4 additions and 2 deletions

View File

@ -412,7 +412,9 @@ public class SummaryBarRenderer {
"</table><hr><h4>")
.append(_(_helper.getTunnelStatus()))
.append("</h4><hr>\n")
.append(_helper.getDestinations());
.append(_helper.getDestinations())
.append("<hr>\n");

View File

@ -414,7 +414,7 @@ public class SummaryHelper extends HelperBase {
} else {
buf.append("<center><i>").append(_("none")).append("</i></center>");
}
buf.append("</div><hr>\n");
buf.append("</div>\n");
return buf.toString();
}