Bug 30008: (bug 29690 follow-up) Fix Invalid data, cannot decode metadata object
[koha-ffzg.git] / rotating_collections / rotatingCollections.pl
index 941f778..b350861 100755 (executable)
@@ -20,12 +20,12 @@ use Modern::Perl;
 
 use CGI qw ( -utf8 );
 
-use C4::Output;
-use C4::Auth;
+use C4::Output qw( output_html_with_http_headers );
+use C4::Auth qw( get_template_and_user );
 use C4::Context;
 use C4::RotatingCollections;
 
-my $query = new CGI;
+my $query = CGI->new;
 
 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
     {
@@ -33,7 +33,6 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
         query           => $query,
         type            => "intranet",
         flagsrequired   => { tools => 'rotating_collections' },
-        debug           => 1,
     }
 );