|
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 |
- |
|
|