2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 23:06:37 +00:00
git-svn-id: https://svn.fhem.de/fhem/trunk@5901 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2014-05-19 13:48:33 +00:00
parent 7e4071121a
commit 97be4f150e

View File

@ -289,7 +289,7 @@ readingsHistory_2html($)
for (my $i = 0; $i < $rows; $i++) { for (my $i = 0; $i < $rows; $i++) {
my $line = $hash->{fhem}{history}[$i]; my $line = $hash->{fhem}{history}[$i];
if( ref($line) eq 'ARRAY' ) { if( ref($line) eq 'ARRAY' ) {
$lines .= $line->[2] if( $line ); $lines .= $line->[3] if( $line );
} else { } else {
$lines .= $line if( $line ); $lines .= $line if( $line );
} }