From: justdave%syndicomm.com <> Date: Sat, 9 Aug 2003 07:10:45 +0000 (+0000) Subject: fix bustage X-Git-Tag: bugzilla-2.16.4~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73f309aeb6135e8d942e531f1b610c771e48f8ee;p=thirdparty%2Fbugzilla.git fix bustage --- diff --git a/checksetup.pl b/checksetup.pl index 7349eabbfc..a86c7cb7ee 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1610,7 +1610,7 @@ $table{tokens} = ########################################################################### # Get a list of the existing tables (if any) in the database -$sth = $dbh->table_info(undef, undef, undef, "TABLE"); +my $sth = $dbh->table_info(undef, undef, undef, "TABLE"); my @tables = @{$dbh->selectcol_arrayref($sth, { Columns => [3] })}; #print 'Tables: ', join " ", @tables, "\n";