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

(-)a/C4/Matcher.pm (-1 / +3 lines)
Lines 838-847 sub _get_match_keys { Link Here
838
            }
838
            }
839
            elsif ( $field->is_control_field() ) {
839
            elsif ( $field->is_control_field() ) {
840
                $string = $field->data();
840
                $string = $field->data();
841
            } else {
841
            } elsif ( defined $component->{subfields} && keys %{$component->{subfields}} ){
842
                $string = $field->as_string(
842
                $string = $field->as_string(
843
                    join('', keys %{ $component->{ subfields } }), ' ' # ' ' as separator
843
                    join('', keys %{ $component->{ subfields } }), ' ' # ' ' as separator
844
                );
844
                );
845
            } else {
846
                $string = $field->as_string();
845
            }
847
            }
846
848
847
            if ($component->{'length'}>0) {
849
            if ($component->{'length'}>0) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/tools-item-action.inc (-1 / +1 lines)
Lines 1-5 Link Here
1
        [% IF item_action_ignore AND num_items == 0 %]
1
        [% IF item_action_ignore AND num_items == 0 %]
2
            No items were found during staging
2
            No items were found during staging
3
            <input type ="hidden" name="item_action" value="ignore">
3
        [% ELSE %]
4
        [% ELSE %]
4
            <select name="item_action" id="item_action">
5
            <select name="item_action" id="item_action">
5
            [% IF ( item_action_always_add ) %]
6
            [% IF ( item_action_always_add ) %]
6
- 

Return to bug 28290