2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-08 01:14:19 +00:00

33_readingsGroup.pm: don't use valueFormat and headings, ! flag is better anyway

git-svn-id: https://svn.fhem.de/fhem/trunk@7083 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2014-11-28 19:00:10 +00:00
parent f611039dcc
commit 11bee8a79e

View File

@ -490,15 +490,6 @@ readingsGroup_2html($)
next if( !defined($txt) );
}
my $value_format = lookup2($hash->{helper}{valueFormat},$name,$1,"");
next if( !defined($value_format) );
if( $value_format =~ m/%/ ) {
$txt = sprintf( $value_format, $txt );
} elsif( $value_format ) {
$txt = $value_format;
}
my $row_style = lookup2($hash->{helper}{cellStyle},$name,$1,undef,$cell_row,undef);
my $cell_style0 = lookup2($hash->{helper}{cellStyle},$name,$1,undef,$cell_row,0);
my $cell_style = lookup2($hash->{helper}{cellStyle},$name,$1,undef,$cell_row,$cell_column);