]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1506144 follow-up - syntax error
authorDylan William Hardison <dylan@hardison.net>
Mon, 1 Apr 2019 17:19:31 +0000 (13:19 -0400)
committerDylan William Hardison <dylan@hardison.net>
Mon, 1 Apr 2019 17:19:31 +0000 (13:19 -0400)
Bugzilla.pm
Bugzilla/Model/Result/Bug.pm

index d52ed7d2b1d436b8a0dc692b6418706abf423271..36af3d90b8b01365026500f426bc4b4b5358c70b 100644 (file)
@@ -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;
index 8447015843ff9d933e8f3fb15a01dbcacbca3f1f..4ec5b71ecec92636d2f937b2a4f367375f8081c9 100644 (file)
@@ -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);