diff options
author | mkanat%bugzilla.org <> | 2009-12-13 22:07:48 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-12-13 22:07:48 +0000 |
commit | b82b431228907463af9cefce2caebd3a2e12693b (patch) | |
tree | 401f8a35e09517193610c78a0f79637fea49eb8f /editproducts.cgi | |
parent | The tinderbox was burning from the checkin of the (diff) | |
download | bugzilla-b82b431228907463af9cefce2caebd3a2e12693b.tar.gz bugzilla-b82b431228907463af9cefce2caebd3a2e12693b.tar.bz2 bugzilla-b82b431228907463af9cefce2caebd3a2e12693b.zip |
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 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index 86f2c0405..a328ca678 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -182,7 +182,6 @@ if ($action eq 'new') { description => scalar $cgi->param('description'), version => scalar $cgi->param('version'), defaultmilestone => scalar $cgi->param('defaultmilestone'), - milestoneurl => scalar $cgi->param('milestoneurl'), isactive => scalar $cgi->param('is_active'), votesperuser => scalar $cgi->param('votesperuser'), maxvotesperbug => scalar $cgi->param('maxvotesperbug'), @@ -294,7 +293,6 @@ if ($action eq 'update') { $product->set_name($product_name); $product->set_description(scalar $cgi->param('description')); $product->set_default_milestone(scalar $cgi->param('defaultmilestone')); - $product->set_milestone_url(scalar $cgi->param('milestoneurl')); $product->set_is_active(scalar $cgi->param('is_active')); $product->set_votes_per_user(scalar $cgi->param('votesperuser')); $product->set_votes_per_bug(scalar $cgi->param('maxvotesperbug')); |