2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-08 01:14:19 +00:00

98_logProxy.pm: fixed 'Unescaped left brace in regex is deprecated' warning.

see forum: https://forum.fhem.de/index.php/topic,62128.0/topicseen.html


git-svn-id: https://svn.fhem.de/fhem/trunk@12724 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2016-12-07 18:20:00 +00:00
parent 17acff2d66
commit 0d70e1da9d

View File

@ -799,7 +799,7 @@ logProxy_Get($@)
while (@options) {
my $option = shift(@options);
while ($option && $option =~ m/={/ && $option !~ m/>}/ ) {
while ($option && $option =~ m/=\{/ && $option !~ m/>}/ ) {
my $next = shift(@options);
last if( !defined($next) );
$option .= ",". $next;