diff options
author | mkanat%bugzilla.org <> | 2006-08-01 05:15:55 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-08-01 05:15:55 +0000 |
commit | 18c57070565d1218935168b437f4adcfe9b38ce4 (patch) | |
tree | cd5b3166102f888321e5a8823c9ad80fb5bd5000 /editvalues.cgi | |
parent | Bug 346350: Update makedocs.pl for the mod_perl version details (diff) | |
download | bugzilla-18c57070565d1218935168b437f4adcfe9b38ce4.tar.gz bugzilla-18c57070565d1218935168b437f4adcfe9b38ce4.tar.bz2 bugzilla-18c57070565d1218935168b437f4adcfe9b38ce4.zip |
Bug 346483: Fix up param-updating code in checksetup.pl to all be in a module.
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=myk
Diffstat (limited to 'editvalues.cgi')
-rwxr-xr-x | editvalues.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editvalues.cgi b/editvalues.cgi index 109f8a29e..dc35c40e0 100755 --- a/editvalues.cgi +++ b/editvalues.cgi @@ -410,7 +410,7 @@ if ($action eq 'update') { && $valueold eq Bugzilla->params->{$defaults{$field}}) { SetParam($defaults{$field}, $value); - WriteParams(); + write_params(); $vars->{'default_value_updated'} = 1; } |