From: Kyle M Hall Date: Wed, 23 May 2012 11:43:59 +0000 (-0400) Subject: Bug 8140 - [SIGNED-OFF] Error when exporting label xml X-Git-Tag: v3.10.01~985 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=971969833351ef00800f1c2a94761c1f9a3862b2;hp=88b6e0f90a32af03ed6c4876e0917176bafe8376;p=koha-ffzg.git Bug 8140 - [SIGNED-OFF] Error when exporting label xml It appears that the name of a variable was changed, but the declaration of said variable was not. Signed-off-by: Jonathan Druart Signed-off-by: Paul Poulain --- diff --git a/labels/label-create-xml.pl b/labels/label-create-xml.pl index 7b108ce32c..8eac2210cf 100755 --- a/labels/label-create-xml.pl +++ b/labels/label-create-xml.pl @@ -32,7 +32,7 @@ use C4::Labels 1.000000; my $cgi = new CGI; my $batch_id; -my @labels_id; +my @label_ids; my @item_numbers; $batch_id = $cgi->param('batch_id') if $cgi->param('batch_id'); my $template_id = $cgi->param('template_id') || undef;