summaryrefslogtreecommitdiffstats
path: root/importxml.pl
diff options
context:
space:
mode:
authorghendricks%novell.com <>2009-02-05 19:40:13 +0100
committerghendricks%novell.com <>2009-02-05 19:40:13 +0100
commit9398153efce1f0d32cfcc29363caf0a6aeb98520 (patch)
tree27dace818c78d5adcc3acb8a6e6916a630995094 /importxml.pl
parent7d01cb036c10487b653fd5a74a64f38093a863c7 (diff)
downloadbugzilla-9398153efce1f0d32cfcc29363caf0a6aeb98520.tar.gz
bugzilla-9398153efce1f0d32cfcc29363caf0a6aeb98520.tar.xz
Bug 476678 - Rich clients unable to update bugs need security token included in bug xml
patch by ghendricks@novell.com r=LpSolit a=LpSolit
Diffstat (limited to 'importxml.pl')
-rwxr-xr-ximportxml.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/importxml.pl b/importxml.pl
index 08bf06c93..a141d5e16 100755
--- a/importxml.pl
+++ b/importxml.pl
@@ -470,6 +470,11 @@ sub process_bug {
# append it to the log, which will go into the comments when we are done.
foreach my $bugchild ( $bug->children() ) {
Debug( "Parsing field: " . $bugchild->name, DEBUG_LEVEL );
+
+ # Skip the token if one is included. We don't want it included in
+ # the comments, and it is not used by the importer.
+ next if $bugchild->name eq 'token';
+
if ( defined $all_fields{ $bugchild->name } ) {
my @values = $bug->children_text($bugchild->name);
if (scalar @values > 1) {