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

(-)a/C4/Koha.pm (-13 / +10 lines)
Lines 730-735 sub getFacets { Link Here
730
                tags  => [ qw/ 225a / ],
730
                tags  => [ qw/ 225a / ],
731
                sep   => ', ',
731
                sep   => ', ',
732
            },
732
            },
733
            {
734
                idx  => 'location',
735
                label => 'Location',
736
                tags        => [ qw/ 995c / ],
737
            }
733
            ];
738
            ];
734
739
735
            my $library_facet;
740
            my $library_facet;
Lines 739-750 sub getFacets { Link Here
739
                    label => 'Libraries',
744
                    label => 'Libraries',
740
                    tags        => [ qw/ 995b / ],
745
                    tags        => [ qw/ 995b / ],
741
                };
746
                };
742
            } else {
743
                $library_facet = {
744
                    idx  => 'location',
745
                    label => 'Location',
746
                    tags        => [ qw/ 995c / ],
747
                };
748
            }
747
            }
749
            push( @$facets, $library_facet );
748
            push( @$facets, $library_facet );
750
    }
749
    }
Lines 792-797 sub getFacets { Link Here
792
                tags  => [ qw/ 952y 942c / ],
791
                tags  => [ qw/ 952y 942c / ],
793
                sep   => ', ',
792
                sep   => ', ',
794
            },
793
            },
794
            {
795
                idx => 'location',
796
                label => 'Location',
797
                tags => [ qw / 952c / ],
798
            },
795
            ];
799
            ];
796
800
797
            my $library_facet;
801
            my $library_facet;
Lines 801-812 sub getFacets { Link Here
801
                    label => 'Libraries',
805
                    label => 'Libraries',
802
                    tags        => [ qw / 952b / ],
806
                    tags        => [ qw / 952b / ],
803
                };
807
                };
804
            } else {
805
                $library_facet = {
806
                    idx => 'location',
807
                    label => 'Location',
808
                    tags => [ qw / 952c / ],
809
                };
810
            }
808
            }
811
            push( @$facets, $library_facet );
809
            push( @$facets, $library_facet );
812
    }
810
    }
813
- 

Return to bug 10078