View | Details | Raw Unified | Return to bug 20400
Collapse All | Expand All

(-)a/opac/opac-routing-lists.pl (-1 / +7 lines)
Lines 24-29 use C4::Output; Link Here
24
use Koha::Patrons;
24
use Koha::Patrons;
25
25
26
my $query = new CGI;
26
my $query = new CGI;
27
28
unless ( C4::Context->preference('RoutingSerials') ) {
29
    print $query->redirect("/cgi-bin/koha/errors/404.pl");
30
    exit;
31
}
32
33
27
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
34
my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
28
    {
35
    {
29
        template_name   => "opac-routing-lists.tt",
36
        template_name   => "opac-routing-lists.tt",
30
- 

Return to bug 20400