From: terry%mozilla.org <> Date: Fri, 18 Feb 2000 03:27:46 +0000 (+0000) Subject: Fixed bug where it was complaining that people without permissions X-Git-Tag: bugzilla-2.12~376 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=870be34704d0679153de40192b326b076343ba7d;p=thirdparty%2Fbugzilla.git Fixed bug where it was complaining that people without permissions were changing the resolution, even if they weren't. --- diff --git a/process_bug.cgi b/process_bug.cgi index 5b5b9e44eb..e432837e23 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -601,6 +601,12 @@ sub LogDependencyActivity { return 0; } +delete $::FORM{'resolution'}; # Make sure we don't test the resolution + # against our permissions; we've already done + # that kind of testing, and this form field + # is actually usually not used. + + # this loop iterates once for each bug to be processed (eg when this script # is called with multiple bugs selected from buglist.cgi instead of # show_bug.cgi).