Commit 1c65aa03 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 315157: Attachment data is not exported when moving bugs to another DB -…

Bug 315157: Attachment data is not exported when moving bugs to another DB - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
parent 9c54e572
......@@ -692,7 +692,8 @@ if ($action eq Param('move-button-text')) {
$msg .= "From: Bugzilla <" . $from . ">\n";
$msg .= "Subject: Moving bug(s) " . join(', ', @idlist) . "\n\n";
my @fieldlist = (Bugzilla::Bug::fields(), 'group', 'long_desc', 'attachment');
my @fieldlist = (Bugzilla::Bug::fields(), 'group', 'long_desc',
'attachment', 'attachmentdata');
my %displayfields;
foreach (@fieldlist) {
$displayfields{$_} = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment