From: lpsolit%gmail.com <> Date: Tue, 8 Nov 2005 04:41:12 +0000 (+0000) Subject: Bug 315157: Attachment data is not exported when moving bugs to another DB - Patch... X-Git-Tag: bugzilla-2.22rc1~161 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c65aa0391d51346831fad6036275a163e9a3f57;p=thirdparty%2Fbugzilla.git Bug 315157: Attachment data is not exported when moving bugs to another DB - Patch by Frédéric Buclin r/a=myk --- diff --git a/process_bug.cgi b/process_bug.cgi index 678bbc002e..fdf5a405b4 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -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;