Bug 20727: Add use line for File::Spec in C4::Context, sort used modules
authorKyle M Hall <kyle@bywatetsolutions.com>
Tue, 5 Jun 2018 18:48:54 +0000 (14:48 -0400)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 22 Jun 2018 16:10:11 +0000 (16:10 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

C4/Context.pm

index 247b7a4..41bce3b 100644 (file)
@@ -90,21 +90,21 @@ BEGIN {
     }          # else there is no browser to send fatals to!
 }
 
-use Encode;
-use ZOOM;
-use Koha::Caches;
-use POSIX ();
-use DateTime::TimeZone;
-use Module::Load::Conditional qw(can_load);
 use Carp;
 use DateTime::TimeZone;
+use Encode;
+use File::Spec;
+use Module::Load::Conditional qw(can_load);
+use POSIX ();
+use ZOOM;
 
 use C4::Boolean;
 use C4::Debug;
-use Koha;
-use Koha::Config;
+use Koha::Caches;
 use Koha::Config::SysPref;
 use Koha::Config::SysPrefs;
+use Koha::Config;
+use Koha;
 
 =head1 NAME