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

(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (-1 / +4 lines)
Lines 874-879 sub _fix_limit_special_cases { Link Here
874
        elsif ( $l =~ /^available$/ ) {
874
        elsif ( $l =~ /^available$/ ) {
875
            push @new_lim, 'onloan:0';
875
            push @new_lim, 'onloan:0';
876
        }
876
        }
877
        elsif ( $l =~ /^mc-loc/ ) {
878
            my ($location) = ($l =~  /^mc-loc:(.*)$/ );
879
            push @new_lim, "location:$location";
880
        }
877
        else {
881
        else {
878
            push @new_lim, $l;
882
            push @new_lim, $l;
879
        }
883
        }
880
- 

Return to bug 22426