From: Dylan William Hardison Date: Mon, 15 Jul 2019 03:32:48 +0000 (-0400) Subject: add missing semicolon X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd60c0d684e08b8b92e2e28e78045f644a0ba146;p=thirdparty%2Fbugzilla.git add missing semicolon --- diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index 86c91e13b7..bd5ec4c0c6 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -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';