From efab535d43142bf20056b6d24306aaf913ecaad1 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 1 Sep 2022 22:06:18 +0000 Subject: [PATCH] Bug 31364: Allow multiple select system prefernces to saved when they are empty/null TO test: 1. Have a multiple select system preference like 'OPACHoldsIfAvailableAtPickupExceptions'. 2. Set a couple patron categories as exceptions and save. 3. Remove all the categories from the exception list and save. 4. You get a message that says 'Nothing to Save' and the changes are not made. 5. Apply patch 6. Try 2-4 again, excpet this time it should save. Signed-off-by: Owen Leonard --- koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js b/koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js index fb63d4b397..9e10e862b7 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js +++ b/koha-tmpl/intranet-tmpl/prog/js/pages/preferences.js @@ -13,7 +13,7 @@ KOHA.Preferences = { // If a multiple select has all its entries unselected var unserialized = new Array(); $(modified_prefs).each(function(){ - if ( $(this).attr('multiple') && $(this).val() == null ) { + if ( $(this).attr('multiple') ) { unserialized.push($(this)); } }); -- 2.20.1