diff options
author | bbaetz%acm.org <> | 2003-02-23 15:31:07 +0000 |
---|---|---|
committer | bbaetz%acm.org <> | 2003-02-23 15:31:07 +0000 |
commit | c0266d1fcdc15f5ccfb5890492a42f4ea598437b (patch) | |
tree | 3302ae6af039953c20ece548fad40742572774cd /process_bug.cgi | |
parent | 9fc47ebee67937f2b309494457784d6ee8db9cfd (diff) | |
download | bugs-c0266d1fcdc15f5ccfb5890492a42f4ea598437b.tar bugs-c0266d1fcdc15f5ccfb5890492a42f4ea598437b.tar.gz bugs-c0266d1fcdc15f5ccfb5890492a42f4ea598437b.tar.bz2 bugs-c0266d1fcdc15f5ccfb5890492a42f4ea598437b.tar.xz bugs-c0266d1fcdc15f5ccfb5890492a42f4ea598437b.zip |
Bug 194394 - Internal error after turning useqacontact off
r,a=justdave
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 6f0d64175..94c74fcf5 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -410,7 +410,7 @@ sub CheckCanChangeField { } # Allow the QA contact to change anything. - if ($qacontactid eq $whoid) { + if (Param('useqacontact') && ($qacontactid eq $whoid)) { return 1; } |