From 45b26ffe98e14d41d84cf3e87bef085ee0d1b351 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 1 Apr 2012 18:20:05 +0200 Subject: [PATCH] Bug 7482: overdues report downloads without names This patch is an alternate patch for the bug. Instead of having one column 'name' for a concatenated first and last name it adds 2 separate columns to the exported csv file. Signed-off-by: Kyle M Hall Signed-off-by: Paul Poulain --- circ/overdue.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/overdue.pl b/circ/overdue.pl index a4cfa7acf9..56e0941081 100755 --- a/circ/overdue.pl +++ b/circ/overdue.pl @@ -425,7 +425,7 @@ sub build_csv { my @lines = (); # build header ... - my @keys = qw /duedate title author borrowertitle name phone barcode email address address2 zipcode city country + my @keys = qw /duedate title author borrowertitle firstname surname phone barcode email address address2 zipcode city country branchcode itemcallnumber biblionumber borrowernumber itemnum issuedate replacementprice streetnumber streettype/; my $csv = Text::CSV_XS->new(); $csv->combine(@keys); -- 2.20.1