From 034e35d495f9900b072c871f2f96c87baa1ddcfa Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Thu, 29 Nov 2007 01:27:11 +0000 Subject: =?UTF-8?q?Bug=20404581:=20add=5Fsetting()=20incorrectly=20handles?= =?UTF-8?q?=20settings=20with=20no=20values=20-=20Patch=20by=20Fr=C3=83?= =?UTF-8?q?=C2=A9d=C3=83=C2=A9ric=20Buclin=20=20r=3Dmka?= =?UTF-8?q?nat=20a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/User/Setting.pm | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Bugzilla/User/Setting.pm b/Bugzilla/User/Setting.pm index bdc653b97..6387883c6 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 -- cgit v1.2.1