mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-22 08:11:44 +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:
parent
17acff2d66
commit
0d70e1da9d
@ -799,7 +799,7 @@ logProxy_Get($@)
|
|||||||
|
|
||||||
while (@options) {
|
while (@options) {
|
||||||
my $option = shift(@options);
|
my $option = shift(@options);
|
||||||
while ($option && $option =~ m/={/ && $option !~ m/>}/ ) {
|
while ($option && $option =~ m/=\{/ && $option !~ m/>}/ ) {
|
||||||
my $next = shift(@options);
|
my $next = shift(@options);
|
||||||
last if( !defined($next) );
|
last if( !defined($next) );
|
||||||
$option .= ",". $next;
|
$option .= ",". $next;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user