From 2b09cbb6bdeb50d60aeffc95f0fa2067e0500ad2 Mon Sep 17 00:00:00 2001 From: talkabout Date: Mon, 3 Oct 2016 09:45:43 +0000 Subject: [PATCH] 95_Dashboard: fix for device specs not working in dashboard any more git-svn-id: https://svn.fhem.de/fhem/trunk@12251 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 185d51cef..4dfece411 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: fix for device specs not working in dashboard any + more. - bugfix: 95_Dashboard: fix for yesterdays commit. - feature: readingsGroup: allow grouping of similar readings from one device 14_SD_WS09.pm WH1080 CRC-Berechung angepaßt--> automatische Modelauswahl diff --git a/fhem/FHEM/95_Dashboard.pm b/fhem/FHEM/95_Dashboard.pm index bdc5cdf18..ea791ba76 100644 --- a/fhem/FHEM/95_Dashboard.pm +++ b/fhem/FHEM/95_Dashboard.pm @@ -570,7 +570,7 @@ sub BuildDashboardTab($$) my @groupparts = split(':', $devicegroup); if (@groupparts == 1) { - my @devices = map { $_ . ':' . $_ } devspec2array($groupparts[0]); + my @devices = map { $_ . '$$$' . $_ } devspec2array($groupparts[0]); push(@tabdevicegroups, @devices); } else {