]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 231691: fix used only once error in Perl 5.00503
authorjustdave%syndicomm.com <>
Mon, 16 Feb 2004 03:46:42 +0000 (03:46 +0000)
committerjustdave%syndicomm.com <>
Mon, 16 Feb 2004 03:46:42 +0000 (03:46 +0000)
r= bbaetz, a= justdave

checksetup.pl

index 4dc2bf53fa9d7ad92fe1260995443225c32ac500..2a6a6b0197fce16cb00c764c740a6377b8fe3613 100755 (executable)
@@ -1611,6 +1611,7 @@ $table{tokens} =
 
 # Get a list of the existing tables (if any) in the database
 my @tables;
+my $zz = $DBI::VERSION; # mention it to eliminate "used only once" warning on perl 5.00503
 if ($DBI::VERSION < 1.20) {
     @tables = map { $_ =~ s/.*\.//; $_ } $dbh->tables;
 }