diff options
author | lpsolit%gmail.com <> | 2008-09-09 00:13:23 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-09-09 00:13:23 +0200 |
commit | b62885e4be6593ec212a20ebc0a4305d79b2b7f9 (patch) | |
tree | 444cd9e58f30699d908deafbdb560d7ed5eee3c8 /post_bug.cgi | |
parent | 4dd427ea99673391d923db9682836d344f178b54 (diff) | |
download | bugzilla-b62885e4be6593ec212a20ebc0a4305d79b2b7f9.tar.gz bugzilla-b62885e4be6593ec212a20ebc0a4305d79b2b7f9.tar.xz |
Bug 388251: Implement 'new Bugzilla::Attachment' - Patch by Frédéric Buclin <LpSolit@gmail.com> a=LpSolit
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 957e7b75f..31c70b0af 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -194,7 +194,7 @@ if (defined $cgi->param('version')) { # Add an attachment if requested. if (defined($cgi->upload('data')) || $cgi->param('attachurl')) { $cgi->param('isprivate', $cgi->param('commentprivacy')); - my $attachment = Bugzilla::Attachment->insert_attachment_for_bug(!THROW_ERROR, + my $attachment = Bugzilla::Attachment->create(!THROW_ERROR, $bug, $user, $timestamp, $vars); if ($attachment) { |