From ffafff44e456ece7c1f0703a653b83f88b6ab547 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Sat, 29 Jun 2019 10:18:29 -0500 Subject: [PATCH] Bug 23218: Fix shift in patron's attributes in batch patron modification When the "new" button is clicked without selecting a patron's attribute, the update will have unexpected behaviors. There is indeed a difference in the number of patron's attributes and the number of values. Test plan: Go to the batch patron modification Enter a cardnumber At the bottom of the page, click "new" without selecting an attribute On the second line select one, and a value (different than an empty string) Save => The attribute will be updated with an empty string Signed-off-by: Maryse Simard --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt index f976bda..3c0b691 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt @@ -268,7 +268,7 @@ - + New @@ -396,7 +396,7 @@ span.html(''); $(disable_input_node).show(); } else { - span.html(''); + span.html(''); $(disable_input_node).hide(); } } -- 2.7.4