Bug 31420: Managing funds: Labels of statistic fields overlap with pull downs
[koha-ffzg.git] / opac / opac-browser.pl
index 67851e9..aad5940 100755 (executable)
@@ -26,11 +26,10 @@ TODO :: Description here
 
 use Modern::Perl;
 
-use C4::Auth;
+use C4::Auth qw( get_template_and_user );
 use C4::Context;
-use C4::Output;
+use C4::Output qw( output_html_with_http_headers );
 use CGI qw ( -utf8 );
-use C4::Biblio;
 
 my $query = CGI->new;
 
@@ -43,7 +42,6 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
         query           => $query,
         type            => "opac",
         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
-        debug           => 1,
     }
 );