Lines 55-61
my ($template, $borrowernumber, $cookie)
Link Here
|
55 |
type => "intranet", |
55 |
type => "intranet", |
56 |
flagsrequired => { reports => '*'}, |
56 |
flagsrequired => { reports => '*'}, |
57 |
}); |
57 |
}); |
58 |
our $sep = $input->param("sep"); |
58 |
our $sep = $input->param("sep") // ''; |
59 |
$sep = "\t" if ($sep eq 'tabulation'); |
59 |
$sep = "\t" if ($sep eq 'tabulation'); |
60 |
$template->param(do_it => $do_it, |
60 |
$template->param(do_it => $do_it, |
61 |
); |
61 |
); |
62 |
- |
|
|