summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-04-08 12:12:42 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-04-08 12:12:42 +0200
commit51bdc50c7ff7caab9c57a67d9cc168347e2d1a11 (patch)
tree9d9a0ea35e8bfeacdd71effba5a5c19642130a5e /Bugzilla/Bug.pm
parentf73a86bf700c8b3e85be84966171cdc8527a204a (diff)
downloadbugzilla-51bdc50c7ff7caab9c57a67d9cc168347e2d1a11.tar.gz
bugzilla-51bdc50c7ff7caab9c57a67d9cc168347e2d1a11.tar.xz
Bug 69621: Remove the keyword cache (which is not updated on keyword rename/delete)
r/a=mkanat
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 89e47a70f..bfcca1076 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -703,8 +703,6 @@ sub update {
$dbh->do('INSERT INTO keywords (bug_id, keywordid) VALUES (?,?)',
undef, $self->id, $keyword_id);
}
- $dbh->do('UPDATE bugs SET keywords = ? WHERE bug_id = ?', undef,
- $self->keywords, $self->id);
# If any changes were found, record it in the activity log
if (scalar @$removed_kw || scalar @$added_kw) {
my $removed_keywords = Bugzilla::Keyword->new_from_list($removed_kw);