Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunnyka98 committed Nov 19, 2024
1 parent 9e53bbf commit 561ac93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CSVZipExport/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function Export(int $ArchiveVariable, int $AggregationStage, int $startTi
$tmpfile = sys_get_temp_dir() . DIRECTORY_SEPARATOR . $this->GenerateFileName($ArchiveVariable);
$zip = new ZipArchive();
$separator = $this->ReadPropertyString('DecimalSeparator');
if ($zip->open($tempfile, ZipArchive::CREATE | ZipArchive::OVERWRITE) === true) {
if ($zip->open($tmpfile, ZipArchive::CREATE | ZipArchive::OVERWRITE) === true) {
$content = '';
if ($AggregationStage != 7) {
$loggedValues = AC_GetAggregatedValues($archiveControlID, $ArchiveVariable, $AggregationStage, $startTimeStamp, $endTimeStamp, 0);
Expand Down

0 comments on commit 561ac93

Please sign in to comment.