2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

FB_CALLLIST: fix shifted table header (Forum: #75435)

git-svn-id: https://svn.fhem.de/fhem/trunk@14919 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
markusbloch 2017-08-18 17:41:36 +00:00
parent d47ca33dcb
commit ff5f745277
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it. # Do not insert empty lines here, update check depends on it.
- bugfix: 72_FB_CALLLIST: fix shifted table header
- new: 59_WUup: first release (Forum #65587) - new: 59_WUup: first release (Forum #65587)
- feature: 49_SSCam: V2.6.3, snapGallery can be triggered by e.g. notify - feature: 49_SSCam: V2.6.3, snapGallery can be triggered by e.g. notify
- bugfix: 93_DbLog: V2.22.3, Forum:#74690, unitialized message in row ... - bugfix: 93_DbLog: V2.22.3, Forum:#74690, unitialized message in row ...

View File

@ -1102,7 +1102,7 @@ sub FB_CALLLIST_returnOrderedHTMLOutput($$$$)
foreach my $col (@order) foreach my $col (@order)
{ {
push @ret, '<td name="'.$col.'" '.$td_additions.'>'.$line->{$col}.'</td>' if($line->{$col}); push @ret, '<td name="'.$col.'" '.$td_additions.'>'.$line->{$col}.'</td>' if(defined($line->{$col}));
} }
return join("",@ret)."</tr>"; return join("",@ret)."</tr>";