@@ -, +, @@ from Koha::Object. 'value'. - 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 --- tools/modborrowers.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/modborrowers.pl +++ a/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; --