From 5eee338175a2f2bf78290ad4154639a2972077ee Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Sat, 15 Jan 2000 06:35:24 +0000 Subject: Patch by Ramon Felciano , with many tweaks by me. Added a footer to every page. Add some options to do things like display checkboxes instead of scrolling lists, and a new formatting for email diffs, and show list items capitalized instead of all upper case. --- post_bug.cgi | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'post_bug.cgi') diff --git a/post_bug.cgi b/post_bug.cgi index ac8dd718d..93e7b3226 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -49,6 +49,7 @@ if (defined $::FORM{'maketemplate'}) { print "If you put a bookmark to this link, it will\n"; print "bring up the submit-a-new-bug page with the fields initialized\n"; print "as you've requested.\n"; + PutFooter(); exit; } @@ -61,12 +62,14 @@ if (!defined $::FORM{'component'} || $::FORM{'component'} eq "") { print "You must choose a component that corresponds to this bug. If\n"; print "necessary, just guess. But please hit the Back button\n"; print "and choose a component.\n"; + PutFooter(); exit 0 } if (!defined $::FORM{'short_desc'} || trim($::FORM{'short_desc'}) eq "") { print "You must enter a summary for this bug. Please hit the\n"; print "Back button and try again.\n"; + PutFooter(); exit; } @@ -173,4 +176,5 @@ print "
Attach a file to this bug navigation_header(); +PutFooter(); exit; -- cgit v1.2.3-24-g4f1b