]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 194394: Someone listed as QA contact on a bug could still access a bug with QA...
authorjustdave%syndicomm.com <>
Fri, 25 Apr 2003 04:01:52 +0000 (04:01 +0000)
committerjustdave%syndicomm.com <>
Fri, 25 Apr 2003 04:01:52 +0000 (04:01 +0000)
Patch by Brad Baetz <bbaetz@acm.org>
r= justdave
a= justdave

process_bug.cgi

index 43c926867fd4f8d21e677496806977714513ae17..aa8b668db7d970a1a4f05e1eb6463577a5b0dcde 100755 (executable)
@@ -304,7 +304,7 @@ sub CheckCanChangeField {
             return 1;
         }
     } elsif ($reporterid eq $whoid || $ownerid eq $whoid ||
-             $qacontactid eq $whoid) {
+             (Param('useqacontact') && $qacontactid eq $whoid)) {
         return 1;
     }
     SendSQL("UNLOCK TABLES");