]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 443519: Changing Products with Strict Isolation fails when the CC list changes...
authorlpsolit%gmail.com <>
Mon, 7 Jul 2008 05:17:46 +0000 (05:17 +0000)
committerlpsolit%gmail.com <>
Mon, 7 Jul 2008 05:17:46 +0000 (05:17 +0000)
Bugzilla/Bug.pm

index e2620203ef127c0782c10f378dfa76d140d64fee..b4636f9bd3012c0da35ec3e7704c089a9478e076 100644 (file)
@@ -1422,7 +1422,8 @@ sub _check_strict_isolation {
         my @old_cc = map { $_->id } @{$original->cc_users};
         my @new_cc = map { $_->id } @{$invocant->cc_users};
         my ($removed, $added) = diff_arrays(\@old_cc, \@new_cc);
-        $ccs = $added;
+        $ccs = Bugzilla::User->new_from_list($added);
+
         $assignee = $invocant->assigned_to
             if $invocant->assigned_to->id != $original->assigned_to->id;
         if ($invocant->qa_contact
@@ -1431,7 +1432,7 @@ sub _check_strict_isolation {
         {
             $qa_contact = $invocant->qa_contact;
         }
-        $product = $invocant->product;
+        $product = $invocant->product_obj;
     }
 
     my @related_users = @$ccs;