summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Migrate.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/Migrate.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/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 a23cbd32a..6671ac375 100644
--- a/Bugzilla/Migrate.pm
+++ b/Bugzilla/Migrate.pm
@@ -815,7 +815,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 {