Skip to content

Commit

Permalink
use bugzilla "version" field instead of "target milestone"
Browse files Browse the repository at this point in the history
  • Loading branch information
ralli committed Sep 3, 2010
1 parent b698afe commit 58d8693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bz2redmine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def migrate_issues
isprivate) = row
if(current_bug_id != bug_id)
sql = "INSERT INTO issues (id, project_id, subject, description, assigned_to_id, author_id, created_on, updated_on, start_date, estimated_hours, priority_id, fixed_version_id, category_id, tracker_id, status_id, root_id, lft, rgt) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
target_milestone_id = self.find_version_id(product_id, target_milestone)
target_milestone_id = self.find_version_id(product_id, version)
updated_at = self.find_max_bug_when(bug_id)
priority_id = map_priority(bug_id, priority)
tracker_id = map_tracker(bug_id, bug_severity)
Expand Down

0 comments on commit 58d8693

Please sign in to comment.