From 202fb38be2425f8779d38197e0b8c0ea83f31733 Mon Sep 17 00:00:00 2001 From: justme1968 Date: Mon, 19 May 2014 13:48:33 +0000 Subject: [PATCH] bug fix git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@5901 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/33_readingsHistory.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/FHEM/33_readingsHistory.pm b/fhem/FHEM/33_readingsHistory.pm index 32298fc8e..0d65e690b 100644 --- a/fhem/FHEM/33_readingsHistory.pm +++ b/fhem/FHEM/33_readingsHistory.pm @@ -289,7 +289,7 @@ readingsHistory_2html($) for (my $i = 0; $i < $rows; $i++) { my $line = $hash->{fhem}{history}[$i]; if( ref($line) eq 'ARRAY' ) { - $lines .= $line->[2] if( $line ); + $lines .= $line->[3] if( $line ); } else { $lines .= $line if( $line ); }