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 |
- |
|
|