summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Object.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2011-09-29 01:25:47 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2011-09-29 01:25:47 +0200
commitdd832b2728550c696a324d74a3a0013e87d8f5c8 (patch)
tree0e0e704c1f7d21f4d65d8b11525d55daf95edf80 /Bugzilla/Object.pm
parent36478e4ed9e8b3f1e613a0829e4ee9f54c1f8f40 (diff)
downloadbugzilla-dd832b2728550c696a324d74a3a0013e87d8f5c8.tar.gz
bugzilla-dd832b2728550c696a324d74a3a0013e87d8f5c8.tar.xz
Bug 686786: Decreasing votestoconfirm in editproducts.cgi crashes Bugzilla
r/a=mkanat
Diffstat (limited to 'Bugzilla/Object.pm')
-rw-r--r--Bugzilla/Object.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm
index 1cad3e829..29a6415b9 100644
--- a/Bugzilla/Object.pm
+++ b/Bugzilla/Object.pm
@@ -441,6 +441,8 @@ sub audit_log {
# During update, it's the actual %changes hash produced by update().
foreach my $field (keys %$changes) {
+ # Skip private changes.
+ next if $field =~ /^_/;
my ($from, $to) = @{ $changes->{$field} };
$sth->execute($user_id, $class, $self->id, $field, $from, $to);
}