From db29480b097468be60ff0ffbc4344166443ae525 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Thu, 3 Jan 2013 01:03:31 +0800 Subject: Bug 817486: fix _sync_fulltext to avoid always updating bugs_fulltext.short_desc r=LpSolit,a=LpSolit --- Bugzilla/Comment.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Comment.pm') 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; } -- cgit v1.2.3-24-g4f1b