From: jocuri%softhome.net <> Date: Sat, 20 Nov 2004 20:31:04 +0000 (+0000) Subject: Patch for bug 267560: CheckCanChangeField in process_bug.cgi shouldn't request the... X-Git-Tag: bugzilla-2.19.2~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=554013819f4722e49a1d262123eba7a2b84be7d2;p=thirdparty%2Fbugzilla.git 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 , r=justdave, a=justdave. --- diff --git a/process_bug.cgi b/process_bug.cgi index 4328a79fce..6ee94a161c 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