summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-12-13 23:07:48 +0100
committermkanat%bugzilla.org <>2009-12-13 23:07:48 +0100
commitb82b431228907463af9cefce2caebd3a2e12693b (patch)
tree401f8a35e09517193610c78a0f79637fea49eb8f /Bugzilla/Bug.pm
parente401b0b8b925787cbe52d0f540b814e40269f228 (diff)
downloadbugzilla-b82b431228907463af9cefce2caebd3a2e12693b.tar.gz
bugzilla-b82b431228907463af9cefce2caebd3a2e12693b.tar.xz
Bug 369489: Remove the milestoneurl feature and link "Target Milestone" to the fields.html page
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm10
1 files changed, 0 insertions, 10 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 2c3a11e8c..9768dede4 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -1972,7 +1972,6 @@ sub set_product {
$self->{_old_product_name} = $old_product->name;
# Delete fields that depend upon the old Product value.
delete $self->{choices};
- delete $self->{milestoneurl};
$product_changed = 1;
}
@@ -2734,15 +2733,6 @@ sub comments {
return \@comments;
}
-sub milestoneurl {
- my ($self) = @_;
- return $self->{'milestoneurl'} if exists $self->{'milestoneurl'};
- return '' if $self->{'error'};
-
- $self->{'milestoneurl'} = $self->product_obj->milestone_url;
- return $self->{'milestoneurl'};
-}
-
sub product {
my ($self) = @_;
return $self->{product} if exists $self->{product};