moved use of C4::Heading to avoid symbol export problem
Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
parent
62ef942468
commit
b27aaef73b
1 changed files with 6 additions and 1 deletions
|
@ -30,7 +30,6 @@ use C4::Branch;
|
||||||
use C4::Dates qw/format_date/;
|
use C4::Dates qw/format_date/;
|
||||||
use C4::Log; # logaction
|
use C4::Log; # logaction
|
||||||
use C4::ClassSource;
|
use C4::ClassSource;
|
||||||
use C4::Heading;
|
|
||||||
|
|
||||||
use vars qw($VERSION @ISA @EXPORT);
|
use vars qw($VERSION @ISA @EXPORT);
|
||||||
|
|
||||||
|
@ -107,6 +106,12 @@ BEGIN {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# because of interdependencies between
|
||||||
|
# C4::Search, C4::Heading, and C4::Biblio,
|
||||||
|
# 'use C4::Heading' must occur after
|
||||||
|
# the exports have been defined.
|
||||||
|
use C4::Heading;
|
||||||
|
|
||||||
=head1 NAME
|
=head1 NAME
|
||||||
|
|
||||||
C4::Biblio - cataloging management functions
|
C4::Biblio - cataloging management functions
|
||||||
|
|
Loading…
Reference in a new issue