From c02f14cbb4a2dcd5afdcdfec8e2df19a15c20950 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 9 Oct 2018 14:01:07 -0300 Subject: [PATCH] Bug 21464: Hide patron's title not biblio's title Signed-off-by: Chris Cormack --- circ/overdue.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/overdue.pl b/circ/overdue.pl index 8b88a24338..e60d3ccc8d 100755 --- a/circ/overdue.pl +++ b/circ/overdue.pl @@ -379,7 +379,7 @@ sub build_csv { $csv->combine(@keys); push @lines, $csv->string(); - my @private_keys = qw( title firstname surname phone email address address2 zipcode city country streetnumber streettype ); + my @private_keys = qw( borrowertitle firstname surname phone email address address2 zipcode city country streetnumber streettype ); # ... and rest of report foreach my $overdue ( @{ $overdues } ) { unless ( $logged_in_user->can_see_patron_infos( $overdue->{patron} ) ) { -- 2.19.1