Lines 746-753
if ( not $viewallitems and $items->count > $max_items_to_display ) {
Link Here
|
746 |
|
746 |
|
747 |
# We only need to check if we haven't determined holds can be placed |
747 |
# We only need to check if we haven't determined holds can be placed |
748 |
# and if we don't have patron, we have already decided |
748 |
# and if we don't have patron, we have already decided |
749 |
$can_holds_be_placed = |
749 |
$can_holds_be_placed = $can_holds_be_placed |
750 |
$can_holds_be_placed || $patron && IsAvailableForItemLevelRequest( $item, $patron, undef ); |
750 |
|| ( $patron |
|
|
751 |
&& IsAvailableForItemLevelRequest( $item, $patron, undef ) |
752 |
&& CanItemBeReserved( $patron, $item, undef ) ); |
751 |
|
753 |
|
752 |
# get collection code description, too |
754 |
# get collection code description, too |
753 |
my $ccode = $item->ccode; |
755 |
my $ccode = $item->ccode; |
754 |
- |
|
|