summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Comment.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-03-05 08:35:25 +0100
committerByron Jones <bjones@mozilla.com>2013-03-05 08:35:25 +0100
commit9249eafc0c96a8eec78ba896027ba2ea208f27d2 (patch)
tree549012b167d7e2aeee78d9934272514c8f8eb481 /Bugzilla/Comment.pm
parent6919f41e51cacaa8f6b4ae7bcdbd010c8d6aefe5 (diff)
downloadbugzilla-9249eafc0c96a8eec78ba896027ba2ea208f27d2.tar.gz
bugzilla-9249eafc0c96a8eec78ba896027ba2ea208f27d2.tar.xz
Bug 817486: _sync_fulltext always updates bugs_fulltext.short_desc, even if it wasn't changed
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 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;
}