From: lpsolit%gmail.com <> Date: Thu, 29 Nov 2007 01:27:11 +0000 (+0000) Subject: Bug 404581: add_setting() incorrectly handles settings with no values - Patch by... X-Git-Tag: bugzilla-3.1.3~456 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=034e35d495f9900b072c871f2f96c87baa1ddcfa;p=thirdparty%2Fbugzilla.git Bug 404581: add_setting() incorrectly handles settings with no values - Patch by Frédéric Buclin r=mkanat a=LpSolit --- diff --git a/Bugzilla/User/Setting.pm b/Bugzilla/User/Setting.pm index bdc653b976..6387883c65 100644 --- a/Bugzilla/User/Setting.pm +++ b/Bugzilla/User/Setting.pm @@ -142,10 +142,12 @@ sub add_setting { $dbh->do('DELETE FROM setting_value WHERE name = ?', undef, $name); $dbh->do('DELETE FROM setting WHERE name = ?', undef, $name); # Remove obsolete user preferences for this setting. - my $list = join(', ', map {$dbh->quote($_)} @$values); - $dbh->do("DELETE FROM profile_setting - WHERE setting_name = ? AND setting_value NOT IN ($list)", - undef, $name); + if (defined $values && scalar(@$values)) { + my $list = join(', ', map {$dbh->quote($_)} @$values); + $dbh->do("DELETE FROM profile_setting + WHERE setting_name = ? AND setting_value NOT IN ($list)", + undef, $name); + } } else { print get_text('install_setting_new', { name => $name }) . "\n"; @@ -335,7 +337,7 @@ $settings->{$setting_name} = new Bugzilla::User::Setting( =over 4 -=item C +=item C Description: Checks for the existence of a setting, and adds it to the database if it does not yet exist. @@ -344,6 +346,11 @@ Params: C<$name> - string - the name of the new setting C<$values> - arrayref - contains the new choices for the new Setting. C<$default_value> - string - the site default + C<$subclass> - string - name of the module returning + the list of valid values. This means legal values are + not stored in the DB. + C<$force_check> - boolean - when true, the existing setting + and all its values are deleted and replaced by new data. Returns: a pointer to a hash of settings