From 543efb72d8d41f51997d06c565737f99dbd885a7 Mon Sep 17 00:00:00 2001 From: talkabout <> Date: Sun, 3 Jan 2016 11:29:48 +0000 Subject: [PATCH] 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 --- fhem/CHANGED | 2 ++ fhem/FHEM/95_Dashboard.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index 1a39a2cd9..66133764e 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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 diff --git a/fhem/FHEM/95_Dashboard.pm b/fhem/FHEM/95_Dashboard.pm index b4980e3e1..fd61501eb 100644 --- a/fhem/FHEM/95_Dashboard.pm +++ b/fhem/FHEM/95_Dashboard.pm @@ -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; } } }