diff options
author | terry%netscape.com <> | 1999-01-16 04:39:20 +0000 |
---|---|---|
committer | terry%netscape.com <> | 1999-01-16 04:39:20 +0000 |
commit | 498a074ffb750e9f3513e932106c990a5cabaca4 (patch) | |
tree | 351925007938c2019f3209b841fac3887c474209 | |
parent | fd18dd28549ec74de3ef164cca3f8e8e3fbcda1e (diff) | |
download | bugs-498a074ffb750e9f3513e932106c990a5cabaca4.tar bugs-498a074ffb750e9f3513e932106c990a5cabaca4.tar.gz bugs-498a074ffb750e9f3513e932106c990a5cabaca4.tar.bz2 bugs-498a074ffb750e9f3513e932106c990a5cabaca4.tar.xz bugs-498a074ffb750e9f3513e932106c990a5cabaca4.zip |
When viewing a bug, make it possible to change its OS.
-rw-r--r-- | bug_form.pl | 6 | ||||
-rwxr-xr-x | process_bug.cgi | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/bug_form.pl b/bug_form.pl index ed6aead8a..003151423 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -118,8 +118,10 @@ print " <TD><SELECT NAME=product>" . make_options(\@::legal_product, $bug{'product'}) . "</SELECT></TD> - <TD ALIGN=RIGHT><B>OS:</B></TD><TD>$bug{'op_sys'}</TD> - <TD ALIGN=RIGHT><B>Reporter:</B></TD><TD>$bug{'reporter'}</TD> + <TD ALIGN=RIGHT><B>OS:</B></TD> + <TD><SELECT NAME=op_sys>" . + make_options(\@::legal_opsys, $bug{'op_sys'}) . + "</SELECT><TD ALIGN=RIGHT><B>Reporter:</B></TD><TD>$bug{'reporter'}</TD> </TR><TR> <TD ALIGN=RIGHT><B><A HREF=\"bug_status.html\">Status:</A></B></TD> <TD>$bug{'bug_status'}</TD> diff --git a/process_bug.cgi b/process_bug.cgi index b8c0c5815..b602448d0 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -122,7 +122,7 @@ sub ChangeResolution { foreach my $field ("rep_platform", "priority", "bug_severity", "url", "summary", "component", "bug_file_loc", "short_desc", - "product", "version", "component") { + "product", "version", "component", "op_sys") { if (defined $::FORM{$field}) { if ($::FORM{$field} ne $::dontchange) { DoComma(); |