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

(-)a/circ/pendingreserves.pl (-1 lines)
Lines 28-34 use C4::Output qw( output_html_with_http_headers ); Link Here
28
use CGI qw ( -utf8 );
28
use CGI qw ( -utf8 );
29
use C4::Auth qw( get_template_and_user );
29
use C4::Auth qw( get_template_and_user );
30
use C4::Items;
30
use C4::Items;
31
use C4::Reserves qw( ModReserveCancelAll );
32
use Koha::Biblios;
31
use Koha::Biblios;
33
use Koha::DateUtils qw( dt_from_string );
32
use Koha::DateUtils qw( dt_from_string );
34
use Koha::Holds;
33
use Koha::Holds;
(-)a/reserve/modrequest.pl (-2 / +1 lines)
Lines 29-35 use List::MoreUtils qw( uniq ); Link Here
29
use Try::Tiny;
29
use Try::Tiny;
30
30
31
use C4::Output;
31
use C4::Output;
32
use C4::Reserves qw( ModReserve ModReserveCancelAll );
32
use C4::Reserves qw( ModReserve );
33
use C4::Auth qw( checkauth );
33
use C4::Auth qw( checkauth );
34
use Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue;
34
use Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue;
35
35
36
- 

Return to bug 34972