Bug 20639: (follow-up) Fix population of backends
[koha.git] / opac / opac-browser.pl
index b82df1b..519472f 100755 (executable)
@@ -24,15 +24,13 @@ TODO :: Description here
 
 =cut
 
-use strict;
-use warnings;
+use Modern::Perl;
 
 use C4::Auth;
 use C4::Context;
 use C4::Output;
 use CGI qw ( -utf8 );
 use C4::Biblio;
-use C4::Koha;       # use getitemtypeinfo
 
 my $query = new CGI;
 
@@ -101,4 +99,4 @@ $template->param(
     have_hierarchy => $have_hierarchy,
 );
 
-output_html_with_http_headers $query, $cookie, $template->output;
+output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };