2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

fhem.pl: parseParams fix (Forum #52242)

git-svn-id: https://svn.fhem.de/fhem/trunk@13501 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2017-02-24 09:39:02 +00:00
parent c3695868dc
commit f6ff4c4cda

View File

@ -4851,7 +4851,7 @@ parseParams($;$)
# the key can not start with a { -> it must be a perl expression # the key can not start with a { -> it must be a perl expression
} elsif( $key =~ m/^\s*{/ ) { } elsif( $key =~ m/^\s*{/ ) {
$value = "$key = $value"; $value = $param;
$key = undef; $key = undef;
} }