summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Comment.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-01-02 18:03:31 +0100
committerByron Jones <bjones@mozilla.com>2013-01-02 18:03:31 +0100
commitdb29480b097468be60ff0ffbc4344166443ae525 (patch)
tree0a10723bc8943a271a22dad0e96157ae46680d39 /Bugzilla/Comment.pm
parent2441a0966dc580b0bbd3c1113b8d0d03bac2c051 (diff)
downloadbugzilla-db29480b097468be60ff0ffbc4344166443ae525.tar.gz
bugzilla-db29480b097468be60ff0ffbc4344166443ae525.tar.xz
Bug 817486: fix _sync_fulltext to avoid always updating bugs_fulltext.short_desc
r=LpSolit,a=LpSolit
Diffstat (limited to 'Bugzilla/Comment.pm')
-rw-r--r--Bugzilla/Comment.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Comment.pm b/Bugzilla/Comment.pm
index 0277819c4..d4e3383ea 100644
--- a/Bugzilla/Comment.pm
+++ b/Bugzilla/Comment.pm
@@ -80,7 +80,7 @@ use constant VALIDATOR_DEPENDENCIES => {
sub update {
my $self = shift;
my $changes = $self->SUPER::update(@_);
- $self->bug->_sync_fulltext();
+ $self->bug->_sync_fulltext( update_comments => 1);
return $changes;
}