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

(-)a/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm (-2 / +1 lines)
Lines 358-364 sub build_authorities_query { Link Here
358
                 }
358
                 }
359
             };
359
             };
360
    if ( $search->{authtypecode} ) {
360
    if ( $search->{authtypecode} ) {
361
        $query->{query}->{bool}->{filter} = { term => { 'authtype' => lc $search->{authtypecode} } };
361
        $query->{query}->{bool}->{filter} = { term => { 'authtype.raw' => $search->{authtypecode} } };
362
    }
362
    }
363
363
364
    my %s;
364
    my %s;
365
- 

Return to bug 24264