|
Lines 106-111
unless ( $patron and $patron->category->override_hidden_items ) {
Link Here
|
| 106 |
print $query->redirect('/cgi-bin/koha/errors/404.pl'); # escape early |
106 |
print $query->redirect('/cgi-bin/koha/errors/404.pl'); # escape early |
| 107 |
exit; |
107 |
exit; |
| 108 |
} |
108 |
} |
|
|
109 |
if ( scalar @all_items >= 1 ) { |
| 110 |
push @hiddenitems, |
| 111 |
GetHiddenItemnumbers( { items => \@all_items, borcat => $patron ? $patron->categorycode : undef } ); |
| 112 |
} |
| 109 |
} |
113 |
} |
| 110 |
|
114 |
|
| 111 |
my $framework = $biblio ? $biblio->frameworkcode : q{}; |
115 |
my $framework = $biblio ? $biblio->frameworkcode : q{}; |
| 112 |
- |
|
|