From: David Lawrence Date: Tue, 30 Aug 2016 20:44:27 +0000 (+0000) Subject: Bug 1299280 - Recent changes introduced by bug 1294478, flags do not display on the... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd6e13943b9816f0ed2ad6702901125544527fa2;p=thirdparty%2Fbugzilla.git Bug 1299280 - Recent changes introduced by bug 1294478, flags do not display on the enter_bug.cgi page --- diff --git a/enter_bug.cgi b/enter_bug.cgi index 697b6c8df..a13515f3d 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -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;