ffzg/recall_notices.pl: added --interval and --dedup
[koha.git] / opac / opac-search-history.pl
index da1196b..3ae4aad 100755 (executable)
@@ -41,11 +41,15 @@ my ($template, $loggedinuser, $cookie) = get_template_and_user(
         query => $cgi,
         type => "opac",
         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
-        flagsrequired => {borrowers => 1},
         debug => 1,
     }
 );
 
+unless ( C4::Context->preference("EnableOpacSearchHistory") ) {
+    print $cgi->redirect("/cgi-bin/koha/errors/404.pl"); # escape early
+    exit;
+}
+
 my $type = $cgi->param('type');
 my $action = $cgi->param('action') || q{};
 my $previous = $cgi->param('previous');