Commit 5767df2c authored by Frédéric Buclin's avatar Frédéric Buclin

Fix bustage due to bug 686630

parent ef4e19c9
...@@ -187,7 +187,7 @@ if ($action eq 'update') { ...@@ -187,7 +187,7 @@ if ($action eq 'update') {
visibility_value => scalar $cgi->param('visibility_value_id'), visibility_value => scalar $cgi->param('visibility_value_id'),
); );
if ($cgi->should_set('is_active')) { if ($cgi->should_set('is_active')) {
params{is_active} = $cgi->param('is_active'); $params{is_active} = $cgi->param('is_active');
} }
$value->set_all(\%params); $value->set_all(\%params);
$vars->{'changes'} = $value->update(); $vars->{'changes'} = $value->update();
......
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