diff options
author | terry%mozilla.org <> | 2000-02-18 00:53:40 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-02-18 00:53:40 +0100 |
commit | 4410f69187675685ff241885622643652d72920e (patch) | |
tree | ca20a4733365afba480c35e06d8a910fa579a6d1 /process_bug.cgi | |
parent | c11194d54e2db8681b84c385dccf5398c548d156 (diff) | |
download | bugzilla-4410f69187675685ff241885622643652d72920e.tar.gz bugzilla-4410f69187675685ff241885622643652d72920e.tar.xz |
Display all possible state transitions in a bug if the user is not
logged in. Since they haven't logged in, we don't know what they will
be allowed to do. And users who disable cookies tend to pretty often
not be logged in.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 1e25ef861..5b5b9e44e 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -279,6 +279,9 @@ sub ChangeStatus { } else { $::query .= "bug_status = '$str'"; } + $::FORM{'bug_status'} = $str; # Used later for call to + # CheckCanChangeField to make sure this + # is really kosher. } } |