Lines 83-88
cronlogaction();
Link Here
|
83 |
my $auto_renews = Koha::Checkouts->search({ auto_renew => 1 }); |
83 |
my $auto_renews = Koha::Checkouts->search({ auto_renew => 1 }); |
84 |
|
84 |
|
85 |
my %report; |
85 |
my %report; |
|
|
86 |
$verbose = 1 unless $verbose or $confirm; |
86 |
print "Test run only\n" unless $confirm; |
87 |
print "Test run only\n" unless $confirm; |
87 |
while ( my $auto_renew = $auto_renews->next ) { |
88 |
while ( my $auto_renew = $auto_renews->next ) { |
88 |
|
89 |
|
89 |
- |
|
|