Commit 3d758ec0 authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 98744: No more software error when the user clicks "remove cc"…

Fix for bug 98744: No more software error when the user clicks "remove cc" without specifying users to remove. Fix by Jake <jake@acutex.net>. r=myk@mozilla.org, no second review needed.
parent de6d572b
...@@ -689,7 +689,7 @@ if (defined $::FORM{newcc} || defined $::FORM{removecc} || defined $::FORM{massc ...@@ -689,7 +689,7 @@ if (defined $::FORM{newcc} || defined $::FORM{removecc} || defined $::FORM{massc
$cc_add = $::FORM{newcc}; $cc_add = $::FORM{newcc};
# We came from bug_form which uses a select box to determine what cc's # We came from bug_form which uses a select box to determine what cc's
# need to be removed... # need to be removed...
if (defined $::FORM{removecc}) { if (defined $::FORM{removecc} && $::FORM{cc}) {
$cc_remove = join (",", @{$::MFORM{cc}}); $cc_remove = join (",", @{$::MFORM{cc}});
} }
} }
......
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