2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-18 12:06:04 +00:00

01_FHEMWEB.pm: fix for FW_addDetailToSummary (Forum #71772)

git-svn-id: https://svn.fhem.de/fhem/trunk@14253 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-05-12 06:11:12 +00:00
parent 19c806e016
commit 2bb4ea94fa

View File

@ -1828,7 +1828,8 @@ FW_showRoom()
my $txt = &{$modules{$type}{FW_detailFn}}($FW_wname, $d, $FW_room);
use strict "refs";
if(defined($txt)) {
FW_pO "<tr class='".($row&1?"odd":"even")."'><td>$txt</td></tr>";
FW_pO "<tr class='".($row&1?"odd":"even").
"'><td colspan='3'>$txt</td></tr>";
}
}
$row++;