Bug 21464: Hide patron's title not biblio's title
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 9 Oct 2018 17:01:07 +0000 (14:01 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Sat, 13 Oct 2018 10:19:33 +0000 (07:19 -0300)
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

circ/overdue.pl

index 8b88a24..e60d3cc 100755 (executable)
@@ -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} ) ) {