diff options
author | terry%mozilla.org <> | 2000-02-18 04:27:46 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-02-18 04:27:46 +0100 |
commit | 870be34704d0679153de40192b326b076343ba7d (patch) | |
tree | c3e77884abc4932fdf2c8d08efe0a62f18e6c3e8 /process_bug.cgi | |
parent | a735df3a485f6ff993a78e0dd263b900cd1576ff (diff) | |
download | bugzilla-870be34704d0679153de40192b326b076343ba7d.tar.gz bugzilla-870be34704d0679153de40192b326b076343ba7d.tar.xz |
Fixed bug where it was complaining that people without permissions
were changing the resolution, even if they weren't.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 5b5b9e44e..e432837e2 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). |