make 7.8.0-7.8.1 more quiet

This commit is contained in:
Doug Bell 2009-10-01 22:08:13 -05:00
parent df82253967
commit c3d25bc5a0

View file

@ -69,7 +69,7 @@ sub removeSQLFormTables {
my $tablesUsed = $session->db->quickScalar("select count(*) from asset where className='WebGUI::Asset::Wobject::SQLForm'"); my $tablesUsed = $session->db->quickScalar("select count(*) from asset where className='WebGUI::Asset::Wobject::SQLForm'");
if (!$tablesUsed) { if (!$tablesUsed) {
$session->db->write('DROP TABLE IF EXISTS SQLForm_fieldOrder'); $session->db->write('DROP TABLE IF EXISTS SQLForm_fieldOrder');
print "\n\t\tSQL Form not used, dropping table..."; print "\n\t\tSQL Form not used, dropping table..." unless $quiet;
} }
print "Done.\n" unless $quiet; print "Done.\n" unless $quiet;
} }