summaryrefslogtreecommitdiffstats
path: root/editversions.cgi
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-05-14 16:20:05 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-05-14 16:20:05 +0200
commit80130158d4f4baa47cf1212cf28da1dc84b9d096 (patch)
treeddedf8e9ae4058e63d08ceb7cbace75a57bd0834 /editversions.cgi
parent8bc37c2d851e06b036c8f895582fedd7051b3592 (diff)
downloadbugzilla-80130158d4f4baa47cf1212cf28da1dc84b9d096.tar.gz
bugzilla-80130158d4f4baa47cf1212cf28da1dc84b9d096.tar.xz
Bug 556731 - Make Bugzilla::Milestone, Bugzilla::Version, and
Bugzilla::Component use VALIDATOR_DEPENDENCIES instead of UPDATE_VALIDATORS r=LpSolit, a=LpSolit
Diffstat (limited to 'editversions.cgi')
-rwxr-xr-xeditversions.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/editversions.cgi b/editversions.cgi
index 7e6b9247d..b4cf9febc 100755
--- a/editversions.cgi
+++ b/editversions.cgi
@@ -120,7 +120,7 @@ if ($action eq 'add') {
if ($action eq 'new') {
check_token_data($token, 'add_version');
my $version = Bugzilla::Version->create(
- {name => $version_name, product => $product});
+ { value => $version_name, product => $product });
delete_token($token);
$vars->{'message'} = 'version_created';