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

(-)a/C4/AuthoritiesMarc.pm (-1 / +2 lines)
Lines 18-23 package C4::AuthoritiesMarc; Link Here
18
18
19
use strict;
19
use strict;
20
use warnings;
20
use warnings;
21
use lib '.';
21
use C4::Context;
22
use C4::Context;
22
use MARC::Record;
23
use MARC::Record;
23
use C4::Biblio;
24
use C4::Biblio;
Lines 109-114 sub SearchAuthorities { Link Here
109
    my ($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby,$skipmetadata) = @_;
110
    my ($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby,$skipmetadata) = @_;
110
    # warn Dumper($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby);
111
    # warn Dumper($tags, $and_or, $excluding, $operator, $value, $offset,$length,$authtypecode,$sortby);
111
    my $dbh=C4::Context->dbh;
112
    my $dbh=C4::Context->dbh;
113
    $sortby="" unless $sortby;
112
    my $query;
114
    my $query;
113
    my $qpquery = '';
115
    my $qpquery = '';
114
    my $QParser;
116
    my $QParser;
115
- 

Return to bug 14075