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