From badd804ae150c42b753a09e86a32f519c2c57c4e Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 28 Apr 2017 08:48:50 +0100 Subject: [PATCH] BUG 18505: opac-search-history does not respect opacPublic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The opac-search-history page was available regardless of the opacPublic setting, this patch corrects that. Test plan, set opacPublic to 'No', test whether opac-search-history page is available when not logged in, note that it is. Apply patch, test whether opac-search-history is still available when not logged in, note that you should be redirected to the login page. Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens Signed-off-by: Kyle M Hall Signed-off-by: Marc VĂ©ron https://bugs.koha-community.org/show_bug.cgi?id=18554 --- opac/opac-search-history.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-search-history.pl b/opac/opac-search-history.pl index 34b0e84..da1196b 100755 --- a/opac/opac-search-history.pl +++ b/opac/opac-search-history.pl @@ -40,7 +40,7 @@ my ($template, $loggedinuser, $cookie) = get_template_and_user( template_name => "opac-search-history.tt", query => $cgi, type => "opac", - authnotrequired => 1, + authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ), flagsrequired => {borrowers => 1}, debug => 1, } -- 2.1.4