Bug 9883 - Koha::Plugins::* should not require koha-conf to load - Followup - Load...
[koha.git] / Koha / Plugins / Base.pm
index b4091b7..3a8dc63 100644 (file)
@@ -24,7 +24,6 @@ use Module::Pluggable require => 1;
 use base qw{Module::Bundled::Files};
 
 use C4::Context;
-use C4::Auth;
 
 =head1 NAME
 
@@ -104,6 +103,8 @@ C4:Template, but at the moment, it does not.
 sub get_template {
     my ( $self, $args ) = @_;
 
+    require C4::Auth;
+
     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
         {   template_name   => $self->mbf_path( $args->{'file'} ),
             query           => $self->{'cgi'},