@@ -, +, @@ --- C4/SIP/ILS/Patron.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/SIP/ILS/Patron.pm +++ a/C4/SIP/ILS/Patron.pm @@ -490,7 +490,7 @@ sub _get_outstanding_holds { # We need to return a barcode for the biblio so the client # can request the biblio info my $items = $hold->biblio->items; - $item = $items->count ? $item->next : undef; + $item = $items->count ? $items->next : undef; } my $unblessed_hold = $hold->unblessed; --