From bcbcad897a3f383b38851f8d0fb27017170d181f Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 13 Jan 2015 23:25:49 +0000 Subject: [PATCH] Bug 12702 - Suggestions still accessible in OPAC when deactivated Added check for suggestions turned off. If off user is redirected to 404 error. If patron suggestions are off guest sugestions will also redirect to 404 Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- opac/opac-suggestions.pl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index 701e431b8f..16aadf8022 100755 --- a/opac/opac-suggestions.pl +++ b/opac/opac-suggestions.pl @@ -45,6 +45,12 @@ if ($negcaptcha ) { exit; } +#If suggestions are turned off we redirect to 404 error. This will also redirect guest suggestions +if ( ! C4::Context->preference('suggestion') ) { + print $input->redirect("/cgi-bin/koha/errors/404.pl"); + exit; +} + delete $$suggestion{$_} foreach qw; $op = 'else' unless $op; -- 2.20.1