Commit cb2ba9f0 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 452907: Clone should also preserve "Blocks" and "Depends on" fields - Patch…

Bug 452907: Clone should also preserve "Blocks" and "Depends on" fields - Patch by Nitish Bezzala <nbezzala@yahoo.com> r/a=mkanat
parent 435cf060
......@@ -399,8 +399,8 @@ if ($cloned_bug_id) {
$vars->{'short_desc'} = $cloned_bug->short_desc;
$vars->{'bug_file_loc'} = $cloned_bug->bug_file_loc;
$vars->{'keywords'} = $cloned_bug->keywords;
$vars->{'dependson'} = $cloned_bug_id;
$vars->{'blocked'} = "";
$vars->{'dependson'} = join (", ", $cloned_bug_id, @{$cloned_bug->dependson});
$vars->{'blocked'} = join (", ", @{$cloned_bug->blocked});
$vars->{'deadline'} = $cloned_bug->deadline;
if (defined $cloned_bug->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