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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc (-1 / +1 lines)
Lines 152-158 Link Here
152
152
153
                    [% IF add_delete_checkbox %]
153
                    [% IF add_delete_checkbox %]
154
                        [% UNLESS ( subfield.mandatory ) %]
154
                        [% UNLESS ( subfield.mandatory ) %]
155
                            <input type="checkbox" id="row[% subfield.tag | html %][% subfield.subfield | html %][% subfield.random | html %]" title="Check to delete subfield [% subfield.subfield | html %]" name="disable_input" value="[% subfield.subfield | html %]" />
155
                            <input type="checkbox" id="row[% subfield.tag | html %][% subfield.subfield | html %][% subfield.random | html %]" title="Check to delete subfield [% subfield.subfield | html %]" name="disable_input" value="[% kohafield | html %]" />
156
                        [% ELSE %]
156
                        [% ELSE %]
157
                            <span class="required">Required</span>
157
                            <span class="required">Required</span>
158
                        [% END %]
158
                        [% END %]
(-)a/tools/batchMod.pl (-3 / +1 lines)
Lines 138-145 if ( $op eq "action" ) { Link Here
138
                  . encode_utf8($attr)
138
                  . encode_utf8($attr)
139
                  ;  # We need to deal correctly with encoding on subfield codes
139
                  ;  # We need to deal correctly with encoding on subfield codes
140
140
141
                if ( grep { $attr eq $_ } @subfields_to_blank ) {
141
                if ( grep { $cgi_var_name eq $_ } @subfields_to_blank ) {
142
143
                    # Empty this column
142
                    # Empty this column
144
                    $new_item_data->{$attr} = undef;
143
                    $new_item_data->{$attr} = undef;
145
                }
144
                }
146
- 

Return to bug 28445