FHEMWEB: Fix for probablyAssociatedWith

git-svn-id: https://svn.fhem.de/fhem/trunk@3648 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2013-08-09 17:42:20 +00:00
parent 8a49f94d7b
commit 8410b016cb

View File

@@ -892,7 +892,7 @@ FW_makeTableFromArray($$@) {
my ($txt,$class,@obj) = @_;
if (@obj>0) {
my $row=1;
FW_pO "<br>";
FW_pO "<div class='makeTable wide'>";
FW_pO "$txt";
FW_pO "<table class=\"block wide $class\">";
foreach (sort @obj) {
@@ -902,7 +902,7 @@ FW_makeTableFromArray($$@) {
FW_pO "</td><td>$defs{$_}{TYPE}</td><td> </td>";
FW_pO "</tr>";
}
FW_pO "</table><br>";
FW_pO "</table></div>";
}
}