diff options
author | terry%mozilla.org <> | 2000-01-15 06:35:24 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-15 06:35:24 +0000 |
commit | 5eee338175a2f2bf78290ad4154639a2972077ee (patch) | |
tree | 2b407e5c7fb1bdd8fe26820c9e5e81775b784b0f /reports.cgi | |
parent | 5c232e771356b52b3acb962e258ccf83c792f68c (diff) | |
download | bugs-5eee338175a2f2bf78290ad4154639a2972077ee.tar bugs-5eee338175a2f2bf78290ad4154639a2972077ee.tar.gz bugs-5eee338175a2f2bf78290ad4154639a2972077ee.tar.bz2 bugs-5eee338175a2f2bf78290ad4154639a2972077ee.tar.xz bugs-5eee338175a2f2bf78290ad4154639a2972077ee.zip |
Patch by Ramon Felciano <felciano@ingenuity.com>, 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.
Diffstat (limited to 'reports.cgi')
-rwxr-xr-x | reports.cgi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/reports.cgi b/reports.cgi index 836228f72..3c2a0df45 100755 --- a/reports.cgi +++ b/reports.cgi @@ -96,6 +96,7 @@ else print "<font color=blue>$_</font> : " . ($::FORM{$_} ? $::FORM{$_} : "undef") . "<br>\n"; } + PutFooter(); exit; } @@ -104,10 +105,10 @@ else print <<FIN; <p> -</body> -</html> FIN +PutFooter(); + ################################## # user came in with no form data # ################################## @@ -308,6 +309,7 @@ FIN if ($bugs_count == 0) { print "No bugs found!\n"; + PutFooter(); exit; } @@ -524,6 +526,7 @@ $msg <p> FIN + PutFooter(); exit; } |