Bug 33016: Change breadcrumbs and page title on MARC diff view to cataloging
[koha-ffzg.git] / C4 / Scheduler.pm
index a1c1ae5..e2f6d85 100644 (file)
@@ -19,15 +19,14 @@ package C4::Scheduler;
 
 use Modern::Perl;
 
-use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use C4::Context;
 use Schedule::At;
 
+our (@ISA, @EXPORT_OK);
 BEGIN {
-       require Exporter;
-       @ISA = qw(Exporter);
-       @EXPORT =
-               qw(get_jobs get_at_jobs get_at_job add_at_job remove_at_job);
+    require Exporter;
+    @ISA       = qw(Exporter);
+    @EXPORT_OK = qw(get_jobs get_at_jobs get_at_job add_at_job remove_at_job);
 }
 
 =head1 NAME