mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-20 13:26:02 +00:00
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
This commit is contained in:
parent
58c2e2155d
commit
be9218fca9
@ -1813,8 +1813,8 @@ getAllSets($)
|
|||||||
# interpreted as the single possible value for a dropdown
|
# interpreted as the single possible value for a dropdown
|
||||||
# Why is the .*= deleted?
|
# Why is the .*= deleted?
|
||||||
$em = join(" ", grep { !/ / }
|
$em = join(" ", grep { !/ / }
|
||||||
map { $_ =~ s/.*=//s;
|
map { $_ =~ s/.*?=//s;
|
||||||
$_ =~ s/.*://s; $_ }
|
$_ =~ s/.*?://s; $_ }
|
||||||
EventMapAsList($em));
|
EventMapAsList($em));
|
||||||
$a2 = "$em $a2";
|
$a2 = "$em $a2";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user