From 4dd9336848d8b90605aa68637a0f2449dfc464ca Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 6 Apr 2018 10:22:20 +0100 Subject: [PATCH] Bug 20536: (ILL) authnotrequired should be explicitly unset on opac * koha/opac-illrequest.pl - Added explicit setting of authnotrequired Signed-off-by: Mark Tompsett Signed-off-by: Tomas Cohen Arazi --- opac/opac-illrequests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-illrequests.pl b/opac/opac-illrequests.pl index 4590284184..6f2b33cd14 100755 --- a/opac/opac-illrequests.pl +++ b/opac/opac-illrequests.pl @@ -46,7 +46,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user({ template_name => "opac-illrequests.tt", query => $query, type => "opac", - authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ), + authnotrequired => 0, }); # Are we able to actually work? -- 2.17.0