2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

01_FHEMWEB.pm: allow @color in stateFormat (Forum #54466)

git-svn-id: https://svn.fhem.de/fhem/trunk@11658 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-06-13 17:28:52 +00:00
parent 0f2bdaf18a
commit 828c6a8c3b

View File

@ -2380,10 +2380,11 @@ FW_readIcons($)
sub
FW_iconName($)
{
my ($name)= @_;
my ($oname)= @_;
my $name = $oname;
$name =~ s/@.*//;
foreach my $pe (@FW_iconDirs) {
return $name if($pe && $FW_icons{$pe} && $FW_icons{$pe}{$name});
return $oname if($pe && $FW_icons{$pe} && $FW_icons{$pe}{$name});
}
return undef;
}