From 7c37f8b22c1cd48a2000b1eefb57a8696d0f432b Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 14 Oct 2022 07:42:26 +0000 Subject: [PATCH] Bug 31785: Fix for adding non-public library Content-Type: text/plain; charset=utf-8 The code in admin/branches.pl changed a 0 to undef which is not desirable for booleans. A similar fix was already present for pickup_location. This may need a bit more thought (somewhere else!). Test plan: Add a new branch with pickup location No, public No. Check. Signed-off-by: Marcel de Rooy --- admin/branches.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/branches.pl b/admin/branches.pl index 17b6a47d3c..0f1a5a6bd2 100755 --- a/admin/branches.pl +++ b/admin/branches.pl @@ -128,7 +128,7 @@ if ( $op eq 'add_form' ) { branchcode => $branchcode, ( map { - $_ eq 'pickup_location' # Don't fallback to undef/NULL, default is 1 in DB + /pickup_location|public/ # Don't fallback to undef for those fields ? ( $_ => scalar $input->param($_) ) : ( $_ => scalar $input->param($_) || undef ) } @fields -- 2.30.2