summaryrefslogtreecommitdiffstats
path: root/importxml.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-06-07 21:07:00 +0200
committerlpsolit%gmail.com <>2008-06-07 21:07:00 +0200
commite40ada61703c1959e2f8291ff1a27178db409832 (patch)
tree81d5b16b8139c329c80bd6c83e26c2ab767be68d /importxml.pl
parent27effd99d37c47da4f1462c63cae3d8548624ca2 (diff)
downloadbugzilla-e40ada61703c1959e2f8291ff1a27178db409832.tar.gz
bugzilla-e40ada61703c1959e2f8291ff1a27178db409832.tar.xz
Bug 437602: importxml.pl does not correctly build the bugs_fulltext table - Patch by Ed Goose <ed.goose@gmail.com> r/a=LpSolit
Diffstat (limited to 'importxml.pl')
-rwxr-xr-ximportxml.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/importxml.pl b/importxml.pl
index 2644d3380..63146c151 100755
--- a/importxml.pl
+++ b/importxml.pl
@@ -1253,7 +1253,7 @@ sub process_bug {
VALUES (?,?,?,?,?,?)", undef,
$id, $exporterid, $timestamp, $worktime, $private, $long_description
);
- Bugzilla::Bug->new($id)->_sync_fulltext();
+ Bugzilla::Bug->new($id)->_sync_fulltext('new_bug');
# Add this bug to each group of which its product is a member.
my $sth_group = $dbh->prepare("INSERT INTO bug_group_map (bug_id, group_id)