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

(-)a/Koha/Authority.pm (-1 / +1 lines)
Lines 64-70 sub get_all_authorities_iterator { Link Here
64
        { columns => [qw/ authid authtypecode marcxml /] } );
64
        { columns => [qw/ authid authtypecode marcxml /] } );
65
    my $next_func = sub {
65
    my $next_func = sub {
66
        my $row = $rs->next();
66
        my $row = $rs->next();
67
        return undef if !$row;
67
        return if !$row;
68
        my $authid       = $row->authid;
68
        my $authid       = $row->authid;
69
        my $authtypecode = $row->authtypecode;
69
        my $authtypecode = $row->authtypecode;
70
        my $marcxml      = $row->marcxml;
70
        my $marcxml      = $row->marcxml;
(-)a/catalogue/search.pl (-3 lines)
Lines 472-479 my $builder = Koha::SearchEngine::QueryBuilder->new( Link Here
472
my $searcher = Koha::SearchEngine::Search->new(
472
my $searcher = Koha::SearchEngine::Search->new(
473
    { index => $Koha::SearchEngine::BIBLIOS_INDEX } );
473
    { index => $Koha::SearchEngine::BIBLIOS_INDEX } );
474
474
475
my @results;
476
477
## I. BUILD THE QUERY
475
## I. BUILD THE QUERY
478
(
476
(
479
    $error,             $query, $simple_query, $query_cgi,
477
    $error,             $query, $simple_query, $query_cgi,
480
- 

Return to bug 16448