Lines 23-30
use Modern::Perl;
Link Here
|
23 |
use CGI qw ( -utf8 ); |
23 |
use CGI qw ( -utf8 ); |
24 |
use C4::Auth qw( get_template_and_user ); |
24 |
use C4::Auth qw( get_template_and_user ); |
25 |
use C4::Context; |
25 |
use C4::Context; |
26 |
use C4::Output qw( output_html_with_http_headers ); |
26 |
use C4::Output qw( output_html_with_http_headers ); |
27 |
use C4::Matcher qw/valid_normalization_routines/; |
27 |
use C4::Matcher; |
28 |
|
28 |
|
29 |
our $input = CGI->new; |
29 |
our $input = CGI->new; |
30 |
my $op = $input->param('op') || ''; |
30 |
my $op = $input->param('op') || ''; |
31 |
- |
|
|