From 2c4b2cab089d723103e4303d9ee0cf352dd9cede Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 31 Aug 2022 11:57:16 +0000 Subject: [PATCH] Bug 31495: Allow opac-page when enforcing GDPR policy Content-Type: text/plain; charset=utf-8 Test plan: Add some page under Additional contents. Enforce GDPR policy. Test with user that has no consent (yet or anymore). Check if you can reach additional contents with opac-page.pl. Signed-off-by: Marcel de Rooy --- C4/Auth.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Auth.pm b/C4/Auth.pm index a2b1b84aea..81e69c778b 100644 --- a/C4/Auth.pm +++ b/C4/Auth.pm @@ -189,7 +189,7 @@ sub get_template_and_user { # If we enforce GDPR and the user did not consent, redirect # Exceptions for consent page itself and SCI/SCO system if( $in->{type} eq 'opac' && $user && - $in->{'template_name'} !~ /^(opac-patron-consent|sc[io]\/)/ && + $in->{'template_name'} !~ /^(opac-page|opac-patron-consent|sc[io]\/)/ && C4::Context->preference('GDPR_Policy') eq 'Enforced' ) { my $consent = Koha::Patron::Consents->search({ -- 2.20.1