mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +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:
parent
d47ca33dcb
commit
ff5f745277
@ -1,5 +1,6 @@
|
||||
# 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.
|
||||
- bugfix: 72_FB_CALLLIST: fix shifted table header
|
||||
- new: 59_WUup: first release (Forum #65587)
|
||||
- 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 ...
|
||||
|
@ -1102,7 +1102,7 @@ sub FB_CALLLIST_returnOrderedHTMLOutput($$$$)
|
||||
|
||||
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>";
|
||||
|
Loading…
Reference in New Issue
Block a user