@@ -, +, @@ instance. 'Place hold' link to go to opac-reserve.pl $reservedfor" appear in the `tail`ed opac-error.log Marking this as 'FAILED QA' --- opac/opac-reserve.pl | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) --- a/opac/opac-reserve.pl +++ a/opac/opac-reserve.pl @@ -466,7 +466,8 @@ foreach my $biblioNum (@biblionumbers) { my $ItemBorrowerReserveInfo = GetMemberDetails( $reservedfor, 0); # the item could be reserved for this borrower vi a host record, flag this - if ($reservedfor eq $borrowernumber){ + $reservedfor //= ''; + if ($reservedfor eq $borrowernumber){ $itemLoopIter->{already_reserved} = 1; } --