From b59f26261fb43925af66fe2085de5b7029163223 Mon Sep 17 00:00:00 2001 From: Alex Sassmannshausen Date: Thu, 10 Aug 2017 13:00:19 +0200 Subject: [PATCH] Bug 19073: (bug 15758 follow-up) Dereference correct value from Koha::Object. * tools/modborrowers.pl: Dereference 'branchcode' rather than 'value'. Test Plan: - Carry out "Batch patron modification" with any number of patrons. + Change the library. + Hit Save. - The library will not have been updated. - Apply patch. - Run same modification. - The library will have been updated Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- tools/modborrowers.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/modborrowers.pl b/tools/modborrowers.pl index 3b83f2bb35..5c8e1b61c2 100755 --- a/tools/modborrowers.pl +++ b/tools/modborrowers.pl @@ -148,7 +148,7 @@ if ( $op eq 'show' ) { # Construct drop-down list values my $branches = Koha::Libraries->search({}, { order_by => ['branchname'] })->unblessed; my @branches_option; - push @branches_option, { value => $_->{value}, lib => $_->{branchname} } for @$branches; + push @branches_option, { value => $_->{branchcode}, lib => $_->{branchname} } for @$branches; unshift @branches_option, { value => "", lib => "" }; my @categories_option; push @categories_option, { value => $_->categorycode, lib => $_->description } for @patron_categories; -- 2.11.0