Commit 646aa223 authored by Sunil Joshi's avatar Sunil Joshi Committed by Simon Green

Bug 714523 - editversions.cgi should use ->set_all

r=simon, a=simon
parent 2fe00715
...@@ -169,8 +169,8 @@ sub product { ...@@ -169,8 +169,8 @@ sub product {
# Validators # Validators
################################ ################################
sub set_name { $_[0]->set('value', $_[1]); } sub set_value { $_[0]->set('value', $_[1]); }
sub set_is_active { $_[0]->set('isactive', $_[1]); } sub set_isactive { $_[0]->set('isactive', $_[1]); }
sub _check_value { sub _check_value {
my ($invocant, $name, undef, $params) = @_; my ($invocant, $name, undef, $params) = @_;
...@@ -219,7 +219,7 @@ Bugzilla::Version - Bugzilla product version class. ...@@ -219,7 +219,7 @@ Bugzilla::Version - Bugzilla product version class.
my $version = Bugzilla::Version->create( my $version = Bugzilla::Version->create(
{ value => $name, product => $product_obj }); { value => $name, product => $product_obj });
$version->set_name($new_name); $version->set_value($new_name);
$version->update(); $version->update();
$version->remove_from_db; $version->remove_from_db;
...@@ -255,9 +255,9 @@ below. ...@@ -255,9 +255,9 @@ below.
=item DEFAULT_VERSION =item DEFAULT_VERSION
=item set_is_active =item set_isactive
=item set_name =item set_value
=item product_id =item product_id
......
...@@ -188,8 +188,10 @@ if ($action eq 'update') { ...@@ -188,8 +188,10 @@ if ($action eq 'update') {
$dbh->bz_start_transaction(); $dbh->bz_start_transaction();
$version->set_name($version_name); $version->set_all({
$version->set_is_active($isactive); value => $version_name,
isactive => $isactive
});
my $changes = $version->update(); my $changes = $version->update();
$dbh->bz_commit_transaction(); $dbh->bz_commit_transaction();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment