summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Migrate.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/Migrate.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/Migrate.pm')
-rw-r--r--Bugzilla/Migrate.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm
index ee0dcab95..2027af7d3 100644
--- a/Bugzilla/Migrate.pm
+++ b/Bugzilla/Migrate.pm
@@ -827,7 +827,7 @@ sub _insert_comments {
$self->_do_table_insert('longdescs', \%copy);
$self->debug(" Inserted comment from " . $who->login, 2);
}
- $bug->_sync_fulltext();
+ $bug->_sync_fulltext( update_comments => 1 );
}
sub _insert_history {