|
Lines 23-29
use CGI;
Link Here
|
| 23 |
|
23 |
|
| 24 |
use JSON qw( to_json ); |
24 |
use JSON qw( to_json ); |
| 25 |
|
25 |
|
| 26 |
use C4::Auth qw( get_template_and_user ); |
26 |
use C4::Auth qw( get_template_and_user ); |
| 27 |
use C4::Output qw( output_html_with_http_headers ); |
27 |
use C4::Output qw( output_html_with_http_headers ); |
| 28 |
|
28 |
|
| 29 |
use Koha::DateUtils qw( dt_from_string ); |
29 |
use Koha::DateUtils qw( dt_from_string ); |
|
Lines 37-43
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
Link Here
|
| 37 |
template_name => 'tools/batch_modify_holds.tt', |
37 |
template_name => 'tools/batch_modify_holds.tt', |
| 38 |
query => $input, |
38 |
query => $input, |
| 39 |
type => "intranet", |
39 |
type => "intranet", |
| 40 |
flagsrequired => { tools => 'batch_modify_holds.tt' }, |
40 |
flagsrequired => { tools => 'batch_modify_holds' }, |
| 41 |
} |
41 |
} |
| 42 |
); |
42 |
); |
| 43 |
|
43 |
|
| 44 |
- |
|
|