2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 23:06:37 +00:00

01_FHEMWEB.pm: add detailFn to a new row (Forum #71772)

git-svn-id: https://svn.fhem.de/fhem/trunk@14308 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-05-17 10:48:42 +00:00
parent 1ed0ae4220
commit 9d3b98b4ec

View File

@ -1386,7 +1386,7 @@ FW_doDetail($)
if($modules{$t}{FW_detailFn}) {
no strict "refs";
my $txt = &{$modules{$t}{FW_detailFn}}($FW_wname, $d, $FW_room);
FW_pO "$txt<br>" if(defined($txt));
FW_pO "</td></tr><tr><td>$txt<br>" if(defined($txt));
use strict "refs";
}