2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-07 16:59:18 +00:00

98_logProxy.pm: logProxy_xyFile2Plot enhancements (by boris)

git-svn-id: https://svn.fhem.de/fhem/trunk@13399 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2017-02-12 13:00:43 +00:00
parent 3f2e98979b
commit 97f46e33e7

View File

@ -740,8 +740,8 @@ logProxy_xyFile2Plot($$$)
chomp;
if(/$regex/) {
my @a= split(/\s/,$_);
my @p= split(",", $a[$column-1]);
push @array, \@p;
my @pp= split(";", $a[$column-1]);
map { my @p= split(",", $_); push @array, \@p; } @pp;
}
}
close(F);