diff options
author | lpsolit%gmail.com <> | 2005-06-21 02:16:26 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-06-21 02:16:26 +0000 |
commit | 5f173728faa3420461cb6f77b32f392bd58a1777 (patch) | |
tree | d61c10f776bc7ba3f01b1acbb62d76c3a6a0ef20 /importxml.pl | |
parent | Bug 297928: detaint_natural, detaint_signed and trick_taint shouldn't rely on... (diff) | |
download | bugzilla-5f173728faa3420461cb6f77b32f392bd58a1777.tar.gz bugzilla-5f173728faa3420461cb6f77b32f392bd58a1777.tar.bz2 bugzilla-5f173728faa3420461cb6f77b32f392bd58a1777.zip |
Bug 76507: Replace "owner" by "assignee" (and "initial" by "default") - Patch by Tiago R. Mello <timello@async.com.br> r=LpSolit a=myk
Diffstat (limited to 'importxml.pl')
-rwxr-xr-x | importxml.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/importxml.pl b/importxml.pl index 8cf9a6179..b8e017412 100755 --- a/importxml.pl +++ b/importxml.pl @@ -531,13 +531,13 @@ for (my $k=1 ; $k <= $bugqty ; $k++) { push (@values, SqlQuote($exporterid) ); push (@query, "assigned_to"); $changed_owner = 1; - $err .= "The original owner of this bug does not have\n"; + $err .= "The original assignee of this bug does not have\n"; $err .= " an account here. Reassigning to the person who moved\n"; $err .= " it here, $exporter.\n"; if ( $bug_fields{'assigned_to'} ) { - $err .= " Previous owner was $bug_fields{'assigned_to'}.\n"; + $err .= " Previous assignee was $bug_fields{'assigned_to'}.\n"; } else { - $err .= " Previous owner is unknown.\n"; + $err .= " Previous assignee is unknown.\n"; } } @@ -550,13 +550,13 @@ for (my $k=1 ; $k <= $bugqty ; $k++) { $err .= "Unknown resolution \"$bug_fields{'resolution'}\".\n"; } - # if the bug's owner changed, mark the bug NEW, unless a valid + # if the bug's assignee changed, mark the bug NEW, unless a valid # resolution is set, which indicates that the bug should be closed. # if ( ($changed_owner) && (!$resolution[0]) ) { push (@values, SqlQuote("NEW")); push (@query, "bug_status"); - $err .= "Bug assigned to new owner, setting status to \"NEW\".\n"; + $err .= "Bug reassigned, setting status to \"NEW\".\n"; $err .= " Previous status was \""; $err .= (defined $bug_fields{'bug_status'})? $bug_fields{'bug_status'}:"unknown"; |