]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix a compile error in Bugzilla::Install::DB from the last checkin.
authormkanat%bugzilla.org <>
Sun, 13 Dec 2009 22:13:23 +0000 (22:13 +0000)
committermkanat%bugzilla.org <>
Sun, 13 Dec 2009 22:13:23 +0000 (22:13 +0000)
Bugzilla/Install/DB.pm

index 0d117bc12d645b18d7b103c002faa74eb17dc4a9..414731fbec960f6109fdb62c40cc7a849ccc672e 100644 (file)
@@ -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 => "''"});
     }