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

(-)a/Koha/OAI/Harvester/Biblio.pm (-1 / +1 lines)
Lines 29-35 Koha::OAI::Harvester::Biblio Link Here
29
29
30
=head1 SYNOPSIS
30
=head1 SYNOPSIS
31
31
32
    use Koha::OAI::Harvester::Biblio;
32
    use Koha::OAI::Harvester::Biblios;
33
    my $biblio = Koha::OAI::Harvester::Biblios->find($id);
33
    my $biblio = Koha::OAI::Harvester::Biblios->find($id);
34
34
35
=head1 METHODS
35
=head1 METHODS
(-)a/Koha/OAI/Harvester/Import/Record.pm (-1 / +1 lines)
Lines 29-35 use C4::Biblio; Link Here
29
29
30
use Koha::OAI::Harvester::Import::MARCXML;
30
use Koha::OAI::Harvester::Import::MARCXML;
31
use Koha::OAI::Harvester::Biblios;
31
use Koha::OAI::Harvester::Biblios;
32
use Koha::OAI::Harvester::History;
32
use Koha::OAI::Harvester::Histories;
33
33
34
=head1 NAME
34
=head1 NAME
35
35
(-)a/Koha/OAI/Harvester/ImportQueue.pm (-2 / +2 lines)
Lines 29-36 Koha::OAI::Harvester::ImportQueue Link Here
29
29
30
=head1 SYNOPSIS
30
=head1 SYNOPSIS
31
31
32
    use Koha::OAI::Harvester::ImportQueue;
32
    use Koha::OAI::Harvester::ImportQueues;
33
    my $request = Koha::OAI::Harvester::ImportQueue->find($id);
33
    my $request = Koha::OAI::Harvester::ImportQueues->find($id);
34
34
35
=head1 METHODS
35
=head1 METHODS
36
36
(-)a/Koha/OAI/Harvester/Request.pm (-2 / +1 lines)
Lines 33-39 Koha::OAI::Harvester::Request Link Here
33
33
34
=head1 SYNOPSIS
34
=head1 SYNOPSIS
35
35
36
    use Koha::OAI::Harvester::Request;
36
    use Koha::OAI::Harvester::Requests;
37
    my $request = Koha::OAI::Harvester::Requests->find($id);
37
    my $request = Koha::OAI::Harvester::Requests->find($id);
38
38
39
=head1 METHODS
39
=head1 METHODS
40
- 

Return to bug 10662