Bug 19532: (RM follow-up) More use of system preference
[srvgit] / opac / opac-overdrive-search.pl
index 575596d..923df46 100755 (executable)
@@ -22,18 +22,20 @@ use Modern::Perl;
 use CGI qw ( -utf8 );
 
 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;