Commit 5d9bba8b authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 315969: Cannot enter new bugs when the CC list is emtpy - Patch by Frédéric…

Bug 315969: Cannot enter new bugs when the CC list is emtpy - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
parent d1883346
......@@ -227,6 +227,7 @@ my %ccids;
# use a hash rather than a list to avoid adding users twice
if (defined $cgi->param('cc')) {
foreach my $person ($cgi->param('cc')) {
next unless $person;
my $ccid = DBNameToIdAndCheck($person);
if ($ccid && !$ccids{$ccid}) {
$ccids{$ccid} = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment