diff options
author | Byron Jones <glob@mozilla.com> | 2015-03-10 15:23:15 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-03-10 15:23:15 +0100 |
commit | e3194040ce6433ee38775e9a0e2cd1af37b41886 (patch) | |
tree | 6730837d4845a356555896284e1e97b436cd00e7 /extensions/Needinfo | |
parent | 63bada08f443c42f225f3d06d8423dcea45d6947 (diff) | |
download | bugzilla-e3194040ce6433ee38775e9a0e2cd1af37b41886.tar.gz bugzilla-e3194040ce6433ee38775e9a0e2cd1af37b41886.tar.xz |
Bug 1141518: error when setting "block needinfo" or "block review requests"
Diffstat (limited to 'extensions/Needinfo')
-rw-r--r-- | extensions/Needinfo/Extension.pm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/extensions/Needinfo/Extension.pm b/extensions/Needinfo/Extension.pm index c03c251b4..f988defd6 100644 --- a/extensions/Needinfo/Extension.pm +++ b/extensions/Needinfo/Extension.pm @@ -233,15 +233,12 @@ sub user_preferences { && $args->{save_changes}; my $input = Bugzilla->input_params; - my $dbh = Bugzilla->dbh; my $settings = Bugzilla->user->settings; - $dbh->bz_start_transaction(); my $value = $input->{block_needinfo} ? 'on' : 'off'; - my $setting = Bugzilla::User::Setting->new('block_needinfo'); - $setting->validate_value($value); - $settings->{'block_needinfo'}->set($value); - $dbh->bz_commit_transaction(); + $settings->{block_needinfo}->validate_value($value); + $settings->{block_needinfo}->set($value); + clear_settings_cache(Bugzilla->user->id); } __PACKAGE__->NAME; |