From a41303589ff8474d759277911a24522fc0f065b7 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. --- circ/overdue.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/circ/overdue.pl b/circ/overdue.pl index a4cfa7a..56e0941 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); -- 1.7.5.4