Skip to content

Commit

Permalink
Comment out assignment of assignee
Browse files Browse the repository at this point in the history
  • Loading branch information
karlmsmith committed Nov 22, 2017
1 parent 811bdfa commit a0350e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trac2github.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
$resp = github_add_issue(array(
'title' => $row['summary'],
'body' => body_with_possible_suffix($body, $row['id']),
'assignee' => $assignee,
// 'assignee' => $assignee,
'milestone' => $milestone,
'labels' => $ticketLabels
));
Expand Down Expand Up @@ -356,8 +356,8 @@ function add_changes_for_ticket($ticket, $ticketLabels) {
} else {
$assignee = NULL;
}
$resp = github_update_issue($tickets[$ticket], array(
'assignee' => $assignee
// $resp = github_update_issue($tickets[$ticket], array(
// 'assignee' => $assignee
));
} else if ($row['field'] == 'milestone') {
if (empty($row['newvalue'])) {
Expand Down

0 comments on commit a0350e4

Please sign in to comment.