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

(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (-1 / +4 lines)
Lines 883-888 sub _fix_limit_special_cases { Link Here
883
        elsif ( $l =~ /^available$/ ) {
883
        elsif ( $l =~ /^available$/ ) {
884
            push @new_lim, 'onloan:0';
884
            push @new_lim, 'onloan:0';
885
        }
885
        }
886
        elsif ( $l =~ /^mc-loc/ ) {
887
            my ($location) = ($l =~  /^mc-loc:(.*)$/ );
888
            push @new_lim, "location:$location";
889
        }
886
        else {
890
        else {
887
            push @new_lim, $l;
891
            push @new_lim, $l;
888
        }
892
        }
889
- 

Return to bug 22426