]> 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:43:33 +0000 (04:43 +0000)
committerlpsolit%gmail.com <>
Sat, 7 May 2005 04:43:33 +0000 (04:43 +0000)
process_bug.cgi

index 133e9b0563a99b2304e92c15502f2331df7ae85c..3dd5f52ee32c84ce4c51953daec1e22e8cf10248 100755 (executable)
@@ -1702,10 +1702,9 @@ foreach my $id (@idlist) {
         }
     }
     # Set and update flags.
-    if ($UserInEditGroupSet) {
-        my $target = Bugzilla::Flag::GetTarget($id);
-        Bugzilla::Flag::process($target, $timestamp, \%::FORM);
-    }
+    my $target = Bugzilla::Flag::GetTarget($id);
+    Bugzilla::Flag::process($target, $timestamp, \%::FORM);
+
     if ($bug_changed) {
         SendSQL("UPDATE bugs SET delta_ts = " . SqlQuote($timestamp) . " WHERE bug_id = $id");
     }