]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1299280 - Recent changes introduced by bug 1294478, flags do not display on the...
authorDavid Lawrence <dkl@mozilla.com>
Tue, 30 Aug 2016 20:44:27 +0000 (20:44 +0000)
committerDavid Lawrence <dkl@mozilla.com>
Tue, 30 Aug 2016 20:44:27 +0000 (20:44 +0000)
enter_bug.cgi

index 697b6c8df8ebec3a895e82b7751ce1dcaa5370ef..a13515f3dc25c6da89cba26c703f6d51f59f93f0 100755 (executable)
@@ -453,7 +453,7 @@ foreach my $c (@{ $product->components }) {
     foreach my $f (@{ $c->flag_types->{attachment} }) {
         push @flag_list, $f->id;
     }
-    $data{flags}[$count] = join(',', @flag_list);
+    $data{flags}[$count] = \@flag_list;
     $count++;
     if (Bugzilla->params->{'useqacontact'}) {
         $data{initialqacontacts}[$count] = $c->default_qa_contact->login;