Bug 19532: (follow-up) Fix calls, tests, syspref settings, checks
[koha-ffzg.git] / opac / opac-overdrive-search.pl
index 9b76189..923df46 100755 (executable)
@@ -21,19 +21,21 @@ use Modern::Perl;
 
 use CGI qw ( -utf8 );
 
-use C4::Auth qw(:DEFAULT get_session);
-use C4::Output;
+use C4::Auth qw( get_template_and_user );
+use C4::Context;
+use C4::Output qw( output_html_with_http_headers );
 
 my $cgi = CGI->new;
 
 # Getting the template and auth
-my ($template, $loggedinuser, $cookie)
-= get_template_and_user({template_name => "opac-overdrive-search.tt",
-                                query => $cgi,
-                                type => "opac",
-                                authnotrequired => 1,
-                                flagsrequired => {borrowers => 'edit_borrowers'},
-                                });
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+    {
+        template_name   => "opac-overdrive-search.tt",
+        query           => $cgi,
+        type            => "opac",
+        authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
+    }
+);
 
 $template->{'VARS'}->{'q'} = $cgi->param('q');
 $template->{'VARS'}->{'limit'} = C4::Context->preference('OPACnumSearchResults') || 20;