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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/background-job.inc (-2 / +1 lines)
Lines 47-53 Link Here
47
            // gather up form submission
47
            // gather up form submission
48
            var inputs = [];
48
            var inputs = [];
49
            $(':input', f).each(function() {
49
            $(':input', f).each(function() {
50
                if (this.type == 'radio') {
50
                if (this.type == 'radio' || this.type == 'checkbox') {
51
                    if (this.checked) {
51
                    if (this.checked) {
52
                        inputs.push(this.name + '=' + escape(this.value));
52
                        inputs.push(this.name + '=' + escape(this.value));
53
                    }
53
                    }
54
- 

Return to bug 5027