@@ -, +, @@ disabled --- opac/opac-routing-lists.pl | 7 +++++++ 1 file changed, 7 insertions(+) --- a/opac/opac-routing-lists.pl +++ a/opac/opac-routing-lists.pl @@ -24,6 +24,13 @@ use C4::Output; use Koha::Patrons; my $query = new CGI; + +unless ( C4::Context->preference('RoutingSerials') ) { + print $query->redirect("/cgi-bin/koha/errors/404.pl"); + exit; +} + + my ( $template, $borrowernumber, $cookie ) = get_template_and_user( { template_name => "opac-routing-lists.tt", --