From c2f4d81ef16f439f67ea90cca0d920ee70df3d39 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 10 Oct 2017 18:06:55 -0300 Subject: [PATCH] Bug 15685: Avoid "Use of uninitialized value" warning in logs --- circ/reserveratios.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/reserveratios.pl b/circ/reserveratios.pl index 5d87cd1f20..cea63eb8ed 100755 --- a/circ/reserveratios.pl +++ b/circ/reserveratios.pl @@ -56,7 +56,7 @@ if ($booksellerid && $basketno) { $template->param( booksellerid => $booksellerid, basketno => $basketno ); } -my $effective_create_items; +my $effective_create_items = q{}; if ( $basketno ){ my $basket = Koha::Acquisition::Baskets->find( $basketno ); if ($basket){ -- 2.11.0