From: Dylan William Hardison Date: Mon, 1 Apr 2019 17:19:31 +0000 (-0400) Subject: Bug 1506144 follow-up - syntax error X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d1cc3cc669eb52ba498895731367f6942beb9f42;p=thirdparty%2Fbugzilla.git Bug 1506144 follow-up - syntax error --- diff --git a/Bugzilla.pm b/Bugzilla.pm index d52ed7d2b..36af3d90b 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -13,7 +13,7 @@ use warnings; use Bugzilla::Logging; -our $VERSION = '20190401.1'; +our $VERSION = '20190401.2'; use Bugzilla::Auth; use Bugzilla::Auth::Persist::Cookie; diff --git a/Bugzilla/Model/Result/Bug.pm b/Bugzilla/Model/Result/Bug.pm index 844701584..4ec5b71ec 100644 --- a/Bugzilla/Model/Result/Bug.pm +++ b/Bugzilla/Model/Result/Bug.pm @@ -14,9 +14,9 @@ __PACKAGE__->table(Bugzilla::Bug->DB_TABLE); __PACKAGE__->add_columns(Bugzilla::Bug->DB_COLUMN_NAMES); __PACKAGE__->add_columns( '+bug_id' => {is_numeric => 1}, - '+reporter' => {is_numeric => 1} - '+qa_contact' => {is_numeric => 1} - '+assigned_to' => {is_numeric => 1} + '+reporter' => {is_numeric => 1}, + '+qa_contact' => {is_numeric => 1}, + '+assigned_to' => {is_numeric => 1}, ); __PACKAGE__->set_primary_key(Bugzilla::Bug->ID_FIELD);