diff options
author | bryce-mozilla%nextbus.com <> | 1999-05-12 14:22:34 +0200 |
---|---|---|
committer | bryce-mozilla%nextbus.com <> | 1999-05-12 14:22:34 +0200 |
commit | f9e320695616f29fb1f11b7a5f3f9cee2040d7ee (patch) | |
tree | bd415b305dd19f0edfe87e5f58d26184bd54c980 /post_bug.cgi | |
parent | 41d9abb76b2c0234a12cdff8a22357a14a362cde (diff) | |
download | bugzilla-f9e320695616f29fb1f11b7a5f3f9cee2040d7ee.tar.gz bugzilla-f9e320695616f29fb1f11b7a5f3f9cee2040d7ee.tar.xz |
"nospam" feature. BugZilla will no longer email the person submitting
the change (after all, they are right there viewing things interactively).
To make this clear to everyone, print out the exact email list as each
bug is processed.
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 6ad8aff82..e98767b1b 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -136,12 +136,12 @@ foreach my $person (keys %ccids) { SendSQL("insert into cc (bug_id, who) values ($id, $person)"); } -print "<H2>Changes Submitted</H2>\n"; -print "<A HREF=\"show_bug.cgi?id=$id\">Show BUG# $id</A>\n"; -print "<BR><A HREF=\"createattachment.cgi?id=$id\">Attach a file to this bug</a>\n"; -print "<BR><A HREF=\"query.cgi\">Back To Query Page</A>\n"; +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"; -system("./processmail $id < /dev/null > /dev/null 2> /dev/null &"); +navigation_header(); exit; |