From 1675c8fb019aaa91d10665402bf7781437145ae3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Demians?= Date: Sun, 18 Apr 2010 11:53:33 +0200 Subject: [PATCH] Fix a warning in log Using a hash as a reference is deprecated Signed-off-by: Galen Charlton --- acqui/basketgroup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/basketgroup.pl b/acqui/basketgroup.pl index 84d4e8ee3b..94c5814080 100755 --- a/acqui/basketgroup.pl +++ b/acqui/basketgroup.pl @@ -237,7 +237,7 @@ sub printbasketgrouppdf{ } } } - %orders->{$basket->{basketno}}=\@ba_orders; + $orders{$basket->{basketno}}=\@ba_orders; } print $input->header( -type => 'application/pdf', -attachment => $basketgroup->{name}.'.pdf' ); my $pdf = printpdf($basketgroup, $bookseller, $baskets, \%orders, $bookseller->{gstrate} || C4::Context->preference("gist")) || die "pdf generation failed"; -- 2.39.5