@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js +++ a/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js @@ -42,7 +42,7 @@ function submitBackgroundJob(f) { // gather up form submission var inputs = []; - $(':input', f).each(function() { + $(':input:enabled', f).each(function() { if (this.type == 'radio' || this.type == 'checkbox') { if (this.checked) { inputs.push(this.name + '=' + encodeURIComponent(this.value)); --