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

(-)a/Koha/BackgroundJob/BatchUpdateItem.pm (-1 / +2 lines)
Lines 171-176 Sent the infos to generate the table containing the details of the modified item Link Here
171
sub additional_report {
171
sub additional_report {
172
    my ( $self, $args ) = @_;
172
    my ( $self, $args ) = @_;
173
173
174
    return unless $self->report->{modified_itemnumbers};
175
174
    my $itemnumbers = $self->report->{modified_itemnumbers};
176
    my $itemnumbers = $self->report->{modified_itemnumbers};
175
    if ( scalar(@$itemnumbers) > C4::Context->preference('MaxItemsToDisplayForBatchMod') ) {
177
    if ( scalar(@$itemnumbers) > C4::Context->preference('MaxItemsToDisplayForBatchMod') ) {
176
        return { too_many_items_display => 1 };
178
        return { too_many_items_display => 1 };
177
- 

Return to bug 31223