From f0e048ef6df9220607688fb9eb459724d3f81ede Mon Sep 17 00:00:00 2001 From: Olli-Antti Kivilahti Date: Mon, 2 Feb 2015 17:57:55 +0200 Subject: [PATCH] Bug 13654 - Cannot place a hold for biblio with too many Items to display unless viewing them all. Certainly not a complete fix, but makes it possible to place holds on Serial Items again. --- opac/opac-detail.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/opac/opac-detail.pl b/opac/opac-detail.pl index 3bf703f..c61705d 100755 --- a/opac/opac-detail.pl +++ b/opac/opac-detail.pl @@ -626,6 +626,7 @@ if ( not $viewallitems and @items > $max_items_to_display ) { too_many_items => 1, items_count => scalar( @items ), ); + $norequests = 0; } else { for my $itm (@items) { $itm->{holds_count} = $item_reserves{ $itm->{itemnumber} }; -- 1.7.9.5