From 8d07799f57c6697c472762b184748fc9e4b3a34b Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 9 Aug 2012 14:07:35 +0200 Subject: [PATCH] Bug 8524: Followup FIX an undeclared variable $query --- cataloguing/value_builder/barcode.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cataloguing/value_builder/barcode.pl b/cataloguing/value_builder/barcode.pl index ac10289..5aeae9f 100755 --- a/cataloguing/value_builder/barcode.pl +++ b/cataloguing/value_builder/barcode.pl @@ -90,7 +90,7 @@ sub plugin_javascript { } elsif ($autoBarcodeType eq 'EAN13') { # not the best, two catalogers could add the same barcode easily this way :/ - $query = "select max(abs(barcode)) from items"; + my $query = "select max(abs(barcode)) from items"; my $sth = $dbh->prepare($query); $sth->execute(); while (my ($last)= $sth->fetchrow_array) { -- 1.7.7.3