From: mkanat%bugzilla.org <> Date: Sun, 13 Dec 2009 22:13:23 +0000 (+0000) Subject: Fix a compile error in Bugzilla::Install::DB from the last checkin. X-Git-Tag: bugzilla-3.5.3~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28f6d6593ebd0d0e9d1d01e8de701a68c82854e6;p=thirdparty%2Fbugzilla.git Fix a compile error in Bugzilla::Install::DB from the last checkin. --- diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 0d117bc12d..414731fbec 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -459,7 +459,7 @@ sub update_table_definitions { _move_data_nomail_into_db(); # The products table lacked sensible defaults. - if ($dbh->bz_column_info('products', 'milestoneurl') { + if ($dbh->bz_column_info('products', 'milestoneurl')) { $dbh->bz_alter_column('products', 'milestoneurl', {TYPE => 'TINYTEXT', NOTNULL => 1, DEFAULT => "''"}); }