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

(-)a/tools/inventory.pl (-5 / +1 lines)
Lines 121-130 for my $authvfield (@$statuses) { Link Here
121
121
122
# if there's a list of not for loans types selected use it rather than
122
# if there's a list of not for loans types selected use it rather than
123
# the full set.
123
# the full set.
124
if ($staton->{'items.notforloan'}) {
124
@notforloans = @{$staton->{'items.notforloan'}} if defined $staton->{'items.notforloan'} and scalar @{$staton->{'items.notforloan'}} > 0;
125
    my @l = @{$staton->{'items.notforloan'}};
126
    @notforloans = @l if scalar @l > 0;
127
}
128
125
129
my @class_sources = Koha::ClassSources->search({ used => 1 });
126
my @class_sources = Koha::ClassSources->search({ used => 1 });
130
my $pref_class = C4::Context->preference("DefaultClassificationSource");
127
my $pref_class = C4::Context->preference("DefaultClassificationSource");
131
- 

Return to bug 25167