diff options
author | justdave%syndicomm.com <> | 2001-11-18 07:40:02 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-11-18 07:40:02 +0100 |
commit | 8df7faa9ba4f01f0603e54a4d9588f9da3f3d349 (patch) | |
tree | ee8da4520538379068b57fc6aedc579b6aebe61e | |
parent | af3616c5931f8174ea740c6ebc630e248324ca68 (diff) | |
download | bugzilla-8df7faa9ba4f01f0603e54a4d9588f9da3f3d349.tar.gz bugzilla-8df7faa9ba4f01f0603e54a4d9588f9da3f3d349.tar.xz |
Fix for bug 109354: After entering a new bug, the link offering to add an attachment to the bug you just created pointed at
the old attachment form instead of the new one.
Patch by Josh Soref <timeless@mac.com>
r= myk x2
-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 bcbef7bb3..b2b843977 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -257,7 +257,7 @@ print "<TABLE BORDER=1><TD><H2>Bug $id posted</H2>\n"; system("./processmail", $id, $::COOKIE{'Bugzilla_login'}); print "<TD><A HREF=\"show_bug.cgi?id=$id\">Back To BUG# $id</A></TABLE>\n"; -print "<BR><A HREF=\"createattachment.cgi?id=$id\">Attach a file to this bug</a>\n"; +print "<BR><A HREF=\"attachment.cgi?bugid=$id&action=enter\">Attach a file to this bug</a>\n"; navigation_header(); |