summaryrefslogtreecommitdiffstats
path: root/importxml.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-06-21 04:16:26 +0200
committerlpsolit%gmail.com <>2005-06-21 04:16:26 +0200
commit5f173728faa3420461cb6f77b32f392bd58a1777 (patch)
treed61c10f776bc7ba3f01b1acbb62d76c3a6a0ef20 /importxml.pl
parentde027530e15fc988f94411784abf368971ff8155 (diff)
downloadbugzilla-5f173728faa3420461cb6f77b32f392bd58a1777.tar.gz
bugzilla-5f173728faa3420461cb6f77b32f392bd58a1777.tar.xz
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-ximportxml.pl10
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";