From d82576ec4678b859c2b1603fc07ff14be747bbcb Mon Sep 17 00:00:00 2001
From: Nick Clemens <nick@bywatersolutions.com>
Date: Wed, 25 May 2022 14:34:55 +0000
Subject: [PATCH] Bug 30847: Don't declrae undef variable for assignment

New holds have found set to undef - we can do this directly
---
 opac/opac-reserve.pl | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/opac/opac-reserve.pl b/opac/opac-reserve.pl
index 5338463649..7b9720d617 100755
--- a/opac/opac-reserve.pl
+++ b/opac/opac-reserve.pl
@@ -240,7 +240,6 @@ if ( $query->param('place_reserve') ) {
         }
 
         my $biblioData = $biblioDataHash{$biblioNum};
-        my $found;
 
         # Check for user supplied reserve date
         my $startdate;
@@ -295,7 +294,7 @@ if ( $query->param('place_reserve') ) {
                     notes            => $notes,
                     title            => $biblioData->{title},
                     itemnumber       => $itemNum,
-                    found            => $found,
+                    found            => undef,
                     itemtype         => $itemtype,
                 }
             );
-- 
2.30.2