diff options
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; } |