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

(-)a/Koha/Account.pm (-1 lines)
Lines 23-29 use Carp; Link Here
23
use Data::Dumper qw( Dumper );
23
use Data::Dumper qw( Dumper );
24
use Try::Tiny qw( catch try );
24
use Try::Tiny qw( catch try );
25
25
26
use C4::Circulation qw( ReturnLostItem CanBookBeRenewed AddRenewal );
27
use C4::Letters;
26
use C4::Letters;
28
use C4::Log qw( logaction );
27
use C4::Log qw( logaction );
29
use C4::Stats qw( UpdateStats );
28
use C4::Stats qw( UpdateStats );
(-)a/misc/cronjobs/automatic_renewals.pl (-2 lines)
Lines 79-85 use Pod::Usage qw( pod2usage ); Link Here
79
use Getopt::Long qw( GetOptions );
79
use Getopt::Long qw( GetOptions );
80
80
81
use Koha::Script -cron;
81
use Koha::Script -cron;
82
use C4::Circulation qw( CanBookBeRenewed AddRenewal );
83
use C4::Context;
82
use C4::Context;
84
use C4::Log qw( cronlogaction );
83
use C4::Log qw( cronlogaction );
85
use C4::Letters;
84
use C4::Letters;
86
- 

Return to bug 31427