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

(-)a/C4/Context.pm (-1 / +3 lines)
Lines 738-744 sub _new_Zconn { Link Here
738
        or ($server eq 'authorityserver' and $context->{'config'}->{'zebra_auth_index_mode'} eq 'grs1')) {
738
        or ($server eq 'authorityserver' and $context->{'config'}->{'zebra_auth_index_mode'} eq 'grs1')) {
739
739
740
        $elementSetName = 'F';
740
        $elementSetName = 'F';
741
        $syntax = 'usmarc';
741
        $syntax = ( $context->preference("marcflavour") eq 'UNIMARC' )
742
                ? 'unimarc'
743
                : 'usmarc';
742
744
743
    } else {
745
    } else {
744
746
(-)a/C4/Search.pm (-4 / +1 lines)
Lines 551-560 sub getRecords { Link Here
551
551
552
                                    unless ( $data ~~ @used_datas ) {
552
                                    unless ( $data ~~ @used_datas ) {
553
                                        push @used_datas, $data;
553
                                        push @used_datas, $data;
554
                                        $facets_counter->{ $facet->{idx} }->{$data}++;
554
                                    }
555
                                    }
555
556
                                    $facets_counter->{ $facet->{idx} }->{$data}++;
557
558
                                } # fields
556
                                } # fields
559
                            }    # field codes
557
                            }    # field codes
560
                        }    # records
558
                        }    # records
561
- 

Return to bug 11096