From 9249eafc0c96a8eec78ba896027ba2ea208f27d2 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 5 Mar 2013 15:35:25 +0800 Subject: Bug 817486: _sync_fulltext always updates bugs_fulltext.short_desc, even if it wasn't changed --- 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 643767232..ae68e3916 100644 --- a/Bugzilla/Comment.pm +++ b/Bugzilla/Comment.pm @@ -93,7 +93,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