Bug 15685: Avoid "Use of uninitialized value" warning in logs
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 10 Oct 2017 21:06:55 +0000 (18:06 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 11 Oct 2017 16:08:47 +0000 (13:08 -0300)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
circ/reserveratios.pl

index 5d87cd1..cea63eb 100755 (executable)
@@ -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){