2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-05 17:48:44 +00:00

95_Dashboard: fixed issue when using cmdIcon attribute for devices

git-svn-id: https://svn.fhem.de/fhem/trunk@10344 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
talkabout 2016-01-03 11:29:48 +00:00
parent 0d006ed063
commit 543efb72d8
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# 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: 95_Dashboard: fixed issue when using cmdIcon attribute
for devices.
- feature: 71_PHILIPS_AUDIO: select presets and favorites by name.
- feature: 50_TelegramBot: alias for commands, new readings,
support for sending media files; plus fixes

View File

@ -866,7 +866,7 @@ sub BuildGroup
} else {
my $nCmd = $cmdIcon{$cmd} ?
FW_makeImage($cmdIcon{$cmd},$cmd,"webCmd") : $cmd;
$ret .= FW_pH "cmd.$d=set $d $cmd$rf", $cmd, 1, "col3", 1;
$ret .= FW_pH "cmd.$d=set $d $cmd$rf", $nCmd, 1, "col3", 1;
}
}
}