From a730795dfde3ca244bf2245ae7903053f9d4936f Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 12 Nov 2007 02:20:29 +0000 Subject: 2nd part of bug 398428: After creating or editing an attachment, immediately display the bug it belongs to - Patch by me, a=LpSolit --- attachment.cgi | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'attachment.cgi') diff --git a/attachment.cgi b/attachment.cgi index cc6408f2b..2d5b6abc4 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -654,6 +654,10 @@ sub delete_attachment { # Paste the reason provided by the admin into a comment. AppendComment($attachment->bug_id, $user->id, $msg); + # Required to display the bug the deleted attachment belongs to. + $vars->{'bugs'} = [new Bugzilla::Bug($attachment->bug_id)]; + $vars->{'header_done'} = 1; + $template->process("attachment/updated.html.tmpl", $vars) || ThrowTemplateError($template->error()); } -- cgit v1.2.3-24-g4f1b