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

(-)a/C4/Koha.pm (-5 / +4 lines)
Lines 684-690 sub getFacets { Link Here
684
    if ( C4::Context->preference("marcflavour") eq "UNIMARC" ) {
684
    if ( C4::Context->preference("marcflavour") eq "UNIMARC" ) {
685
        $facets = [
685
        $facets = [
686
            {
686
            {
687
                idx   => 'su-to',
687
                idx   => 'su-to,wrdl',
688
                label => 'Topics',
688
                label => 'Topics',
689
                tags  => [ qw/ 600a 601a 602a 603a 604a 605a 606ax 610a/ ],
689
                tags  => [ qw/ 600a 601a 602a 603a 604a 605a 606ax 610a/ ],
690
                sep   => ' - ',
690
                sep   => ' - ',
Lines 696-714 sub getFacets { Link Here
696
                sep   => ' - ',
696
                sep   => ' - ',
697
            },
697
            },
698
            {
698
            {
699
                idx   => 'su-ut',
699
                idx   => 'su-ut,wrdl',
700
                label => 'Titles',
700
                label => 'Titles',
701
                tags  => [ qw/ 500a 501a 502a 503a 504a / ],
701
                tags  => [ qw/ 500a 501a 502a 503a 504a / ],
702
                sep   => ', ',
702
                sep   => ', ',
703
            },
703
            },
704
            {
704
            {
705
                idx   => 'au',
705
                idx   => 'au,wrdl',
706
                label => 'Authors',
706
                label => 'Authors',
707
                tags  => [ qw/ 700ab 701ab 702ab / ],
707
                tags  => [ qw/ 700ab 701ab 702ab / ],
708
                sep   => ', ',
708
                sep   => ', ',
709
            },
709
            },
710
            {
710
            {
711
                idx   => 'se',
711
                idx   => 'se,wrdl',
712
                label => 'Series',
712
                label => 'Series',
713
                tags  => [ qw/ 225a / ],
713
                tags  => [ qw/ 225a / ],
714
                sep   => ', ',
714
                sep   => ', ',
715
- 

Return to bug 8360