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

(-)a/opac/opac-search-history.pl (-1 / +5 lines)
Lines 45-50 my ($template, $loggedinuser, $cookie) = get_template_and_user( Link Here
45
    }
45
    }
46
);
46
);
47
47
48
unless ( C4::Context->preference("EnableOpacSearchHistory") ) {
49
    print $cgi->redirect("/cgi-bin/koha/errors/404.pl"); # escape early
50
    exit;
51
}
52
48
my $type = $cgi->param('type');
53
my $type = $cgi->param('type');
49
my $action = $cgi->param('action') || q{};
54
my $action = $cgi->param('action') || q{};
50
my $previous = $cgi->param('previous');
55
my $previous = $cgi->param('previous');
51
- 

Return to bug 12497