]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
add missing semicolon
authorDylan William Hardison <dylan@hardison.net>
Mon, 15 Jul 2019 03:32:48 +0000 (23:32 -0400)
committerDylan William Hardison <dylan@hardison.net>
Mon, 15 Jul 2019 03:32:48 +0000 (23:32 -0400)
Bugzilla/DB/Mysql.pm

index 86c91e13b797e47aea66d98f6085c8ecc175c942..bd5ec4c0c6fa0501866ea54f1ac0473ea032512e 100644 (file)
@@ -349,7 +349,7 @@ sub bz_setup_database {
     foreach my $table (@$tables) {
       my ($table, undef, undef, $row_format) = @$table;
       my $new_row_format = $self->default_row_format($table);
-      next if lc($table->[-1]) eq 'view'
+      next if lc($table->[-1]) eq 'view';
       next if lc($new_row_format) eq 'compact';
       next if lc($row_format) eq 'dynamic';
       next if lc($row_format) eq 'compressed';