diff options
author | terry%mozilla.org <> | 2000-03-11 02:45:09 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-03-11 02:45:09 +0100 |
commit | 1f9f6d7641c4fb0c9214133efd7ef03f682b158c (patch) | |
tree | 100a79125ac14ab9e36501e6807b1c4566a4277e | |
parent | 77c9d7e800351211f79b0f439b21862de7e05294 (diff) | |
download | bugzilla-1f9f6d7641c4fb0c9214133efd7ef03f682b158c.tar.gz bugzilla-1f9f6d7641c4fb0c9214133efd7ef03f682b158c.tar.xz |
Removed warning.
-rw-r--r-- | CGI.pl | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -24,13 +24,14 @@ use diagnostics; use strict; - +# use Carp; # for confess # Shut up misguided -w warnings about "used only once". For some reason, # "use vars" chokes on me when I try it here. sub CGI_pl_sillyness { my $zz; $zz = %::FILENAME; + $zz = %::MFORM; $zz = %::dontchange; } @@ -451,6 +452,7 @@ sub make_options { "details of what you were doing when this message " . "appeared. Thank you.\n"; PutFooter(); +# confess "Gulp."; exit 0; } else { |