summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authorendico%mozilla.org <>2000-07-14 12:20:16 +0200
committerendico%mozilla.org <>2000-07-14 12:20:16 +0200
commitf2545f51005da0040d3bcbd6e90712b27973d9ac (patch)
tree4d7eed11f1137a16d0c1048add15e6fa0c95d03f /bug_form.pl
parent204f658bad90994892c2a13f289c2252ee30b8c5 (diff)
downloadbugzilla-f2545f51005da0040d3bcbd6e90712b27973d9ac.tar.gz
bugzilla-f2545f51005da0040d3bcbd6e90712b27973d9ac.tar.xz
change '@::legal_resolution_no_dup' to '@::settable_resolutions'. This a list of resolutions which a bug may be changed to in the bug form and consists of all legal resolutions except 'MOVED' and 'DUPLICATE', since setting a bug to those resolutions requires a special process.
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bug_form.pl b/bug_form.pl
index d81a9b813..c41b51e6e 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -39,7 +39,7 @@ sub bug_form_pl_sillyness {
$zz = @::legal_platform;
$zz = @::legal_product;
$zz = @::legal_priority;
- $zz = @::legal_resolution_no_dup;
+ $zz = @::settable_resolution;
$zz = @::legal_severity;
$zz = %::target_milestone;
}
@@ -140,7 +140,7 @@ GetVersionTable();
# These should be read from the database ...
#
-my $resolution_popup = make_options(\@::legal_resolution_no_dup,
+my $resolution_popup = make_options(\@::settable_resolution,
$bug{'resolution'});
my $platform_popup = make_options(\@::legal_platform, $bug{'rep_platform'});
my $priority_popup = make_options(\@::legal_priority, $bug{'priority'});