diff options
author | lpsolit%gmail.com <> | 2008-06-07 19:07:00 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-06-07 19:07:00 +0000 |
commit | e40ada61703c1959e2f8291ff1a27178db409832 (patch) | |
tree | 81d5b16b8139c329c80bd6c83e26c2ab767be68d /importxml.pl | |
parent | Bug 437369: Deleting a bug doesn't remove related data from the bugs_fulltext... (diff) | |
download | bugzilla-e40ada61703c1959e2f8291ff1a27178db409832.tar.gz bugzilla-e40ada61703c1959e2f8291ff1a27178db409832.tar.bz2 bugzilla-e40ada61703c1959e2f8291ff1a27178db409832.zip |
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-x | importxml.pl | 2 |
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) |