From 4dea37c6787fa72af1c63535a45284b429b3acbc Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 5 Jan 2021 11:18:26 +0100 Subject: [PATCH] Bug 27342: Improve test for OPAC We don't need to build allowed_scripts_for_private_opac for staff --- C4/Auth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index d2d7c0f392..a9545b026b 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -798,7 +798,7 @@ sub checkauth { my $template_name = shift; $type = 'opac' unless $type; - unless ( C4::Context->preference("OpacPublic") ) { + if ( $type eq 'opac' && !C4::Context->preference("OpacPublic") ) { my @allowed_scripts_for_private_opac = qw( opac-memberentry.tt opac-registration-email-sent.tt -- 2.20.1