From 884da2df3565ff44c88a6b4dc395d7ec754404ab 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 --- opac/opac-suggestions.pl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index 701e431..16aadf8 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; -- 1.7.10.4