]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 286160: possible invalid flag types when moving a bug to a different product...
authorlpsolit%gmail.com <>
Sat, 7 May 2005 04:40:32 +0000 (04:40 +0000)
committerlpsolit%gmail.com <>
Sat, 7 May 2005 04:40:32 +0000 (04:40 +0000)
process_bug.cgi

index 6eb82fc5a8f156ea381ffd3b8945022f6615923c..05f4fec0d6cfd046d5f4f2de63a58373aa9f6b3e 100755 (executable)
@@ -1794,10 +1794,9 @@ foreach my $id (@idlist) {
         }
     }
     # Set and update flags.
-    if ($UserInEditGroupSet) {
-        my $target = Bugzilla::Flag::GetTarget($id);
-        Bugzilla::Flag::process($target, $timestamp, $cgi);
-    }
+    my $target = Bugzilla::Flag::GetTarget($id);
+    Bugzilla::Flag::process($target, $timestamp, $cgi);
+
     if ($bug_changed) {
         SendSQL("UPDATE bugs SET delta_ts = $sql_timestamp WHERE bug_id = $id");
     }