From 133b2b581a815a67f30dc9ea194f683612e414bc Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 15 Jan 2021 11:27:47 +0100 Subject: [PATCH] Bug 27413: Restore debarred and debarredcomment to batch patron mod tools MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit It was added by bug 13552 but removed by 19793. Test plan: Update patron in a batch and confirm that you can modify the restriction expiration and comment. Signed-off-by: Joonas Kylmälä Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart (cherry picked from commit 85ae9bd021aef4e7423669a61df7c4c7fd5b726b) Signed-off-by: Fridolin Somers (cherry picked from commit f4a8aa75ab948cc4476b01b69f6b2e1623443828) Signed-off-by: Andrew Fuerste-Henry --- tools/modborrowers.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/modborrowers.pl b/tools/modborrowers.pl index eed17ea6eb..2a7caf30ec 100755 --- a/tools/modborrowers.pl +++ b/tools/modborrowers.pl @@ -321,7 +321,7 @@ if ( $op eq 'do' ) { my @disabled = $input->multi_param('disable_input'); my $infos; - for my $field ( qw/surname firstname branchcode categorycode streetnumber address address2 city state zipcode country email phone mobile sort1 sort2 dateenrolled dateexpiry borrowernotes opacnote/ ) { + for my $field ( qw/surname firstname branchcode categorycode streetnumber address address2 city state zipcode country email phone mobile sort1 sort2 dateenrolled dateexpiry borrowernotes opacnote debarred debarredcomment/ ) { my $value = $input->param($field); $infos->{$field} = $value if $value; $infos->{$field} = "" if grep { $_ eq $field } @disabled; -- 2.39.5