Bug 31020: Fix PassItemMarcToXSLT in system preferences description
[srvgit] / reports / itemslost.pl
index 3fcb75d..901ff5a 100755 (executable)
@@ -29,14 +29,11 @@ use Modern::Perl;
 
 use CGI qw ( -utf8 );
 use Text::CSV_XS;
-use C4::Auth;
-use C4::Output;
-use C4::Biblio;
-use C4::Items;
+use C4::Auth qw( get_template_and_user );
+use C4::Output qw( output_html_with_http_headers );
 
 use Koha::AuthorisedValues;
 use Koha::CsvProfiles;
-use Koha::DateUtils;
 
 my $query = CGI->new;
 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
@@ -45,7 +42,6 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
         query           => $query,
         type            => "intranet",
         flagsrequired   => { reports => '*' },
-        debug           => 1,
     }
 );