From a893ade6f45ac3a4ae93d7bbd55135fda4a35297 Mon Sep 17 00:00:00 2001 From: Magnus Enger Date: Fri, 16 Aug 2024 14:59:20 +0200 Subject: [PATCH] Bug 33339: (Follow up) Fix more cases of formula=empty Content-Type: text/plain; charset=utf-8 This patch adds formula=empty to: - Koha::ERM::EUsage::SushiCounter::_build_COUNTER_report_file() Updated 2024-09-26: Earlier version also removed unnecessary use of formula=empty from two places. Signed-off-by: Chris Cormack Signed-off-by: Marcel de Rooy --- Koha/ERM/EUsage/SushiCounter.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/ERM/EUsage/SushiCounter.pm b/Koha/ERM/EUsage/SushiCounter.pm index 4e33f8988f..10bde4ea21 100644 --- a/Koha/ERM/EUsage/SushiCounter.pm +++ b/Koha/ERM/EUsage/SushiCounter.pm @@ -86,7 +86,7 @@ sub _build_COUNTER_report_file { my @report = ( @{$header}, @{$column_headings}, @{$body} ); #TODO: change this to tab instead of comma - csv( in => \@report, out => \my $counter_file, encoding => "utf-8" ); + csv( in => \@report, out => \my $counter_file, encoding => "utf-8", formula => 'empty' ); return $counter_file; -- 2.39.5