View | Details | Raw Unified | Return to bug 18707
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/background-job-progressbar.js (-2 / +1 lines)
Lines 42-48 function submitBackgroundJob(f) { Link Here
42
42
43
        // gather up form submission
43
        // gather up form submission
44
        var inputs = [];
44
        var inputs = [];
45
        $(':input', f).each(function() {
45
        $(':input:enabled', f).each(function() {
46
            if (this.type == 'radio' || this.type == 'checkbox') {
46
            if (this.type == 'radio' || this.type == 'checkbox') {
47
                if (this.checked) {
47
                if (this.checked) {
48
                    inputs.push(this.name + '=' + encodeURIComponent(this.value));
48
                    inputs.push(this.name + '=' + encodeURIComponent(this.value));
49
- 

Return to bug 18707