diff options
author | jocuri%softhome.net <> | 2004-11-20 21:31:04 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-11-20 21:31:04 +0100 |
commit | 554013819f4722e49a1d262123eba7a2b84be7d2 (patch) | |
tree | 767d17ffd9b2c44b906590a6d44f4a24dcd633c5 /process_bug.cgi | |
parent | 6d44951fb4cb566d6d36704abeed9399767cab66 (diff) | |
download | bugzilla-554013819f4722e49a1d262123eba7a2b84be7d2.tar.gz bugzilla-554013819f4722e49a1d262123eba7a2b84be7d2.tar.xz |
Patch for bug 267560: CheckCanChangeField in process_bug.cgi shouldn't request the bug owner, QA contact and reporter too many times; patch by Frédéric Buclin <LpSolit@netscape.net>, r=justdave, a=justdave.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 4328a79fc..6ee94a161 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -442,6 +442,7 @@ sub CheckCanChangeField { SendSQL("SELECT reporter, assigned_to, qa_contact FROM bugs WHERE bug_id = $bugid"); ($reporterid, $ownerid, $qacontactid) = (FetchSQLData()); + $lastbugid = $bugid; } # END DO_NOT_CHANGE |