2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

98_SVG.pm: call copyGplotFile automatically in WtiteGplotFile

git-svn-id: https://svn.fhem.de/fhem/trunk@8375 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2015-04-05 06:43:12 +00:00
parent 44569bf6cc
commit eb078ede04

View File

@ -596,8 +596,11 @@ SVG_WriteGplot($)
}
my $wlName = $FW_webArgs{detail};
my $fName = "$FW_gplotdir/$defs{$wlName}{GPLOTFILE}.gplot";
return if(!$fName);
my $hash = $defs{$wlName};
if($hash->{GPLOTFILE} ne $wlName) {
Log 1, "WriteGplot: calling set $wlName copyGplotFile";
SVG_Set($hash, $wlName, "copyGplotFile");
}
my @rows;
push @rows, "# Created by FHEM/98_SVG.pm, ".TimeNow();
@ -648,7 +651,7 @@ SVG_WriteGplot($)
push @rows, $r;
}
my $err = FileWrite($fName, @rows);
my $err = FileWrite("$FW_gplotdir/$hash->{GPLOTFILE}.gplot", @rows);
$FW_RET .= "<div id='errmsg'>SVG_WriteGplot: $err</div>" if($err);
return 0;