From be9218fca9270bd0844496d2ed07484c7f1ed931 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Fri, 9 Aug 2013 18:02:45 +0000 Subject: [PATCH] fhem.pl: non-greedy match for eventMap data in getAllSets git-svn-id: https://svn.fhem.de/fhem/trunk@3650 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/fhem.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhem/fhem.pl b/fhem/fhem.pl index 58c0a02c4..150645105 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -1813,8 +1813,8 @@ getAllSets($) # interpreted as the single possible value for a dropdown # Why is the .*= deleted? $em = join(" ", grep { !/ / } - map { $_ =~ s/.*=//s; - $_ =~ s/.*://s; $_ } + map { $_ =~ s/.*?=//s; + $_ =~ s/.*?://s; $_ } EventMapAsList($em)); $a2 = "$em $a2"; }