2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-19 12:46:03 +00:00

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 7ca72512c3
commit 98bd7dd6b6

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>";
}
}