diff options
author | terry%mozilla.org <> | 2000-03-24 03:20:34 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-03-24 03:20:34 +0100 |
commit | 71eef1691521b26b1554d9b647bee684e02e47e7 (patch) | |
tree | 04e44b9592711826e0713de336798d0f5a4fd040 | |
parent | 903acdf95377df5d1513732cb3c136a875b177c0 (diff) | |
download | bugzilla-71eef1691521b26b1554d9b647bee684e02e47e7.tar.gz bugzilla-71eef1691521b26b1554d9b647bee684e02e47e7.tar.xz |
Add a bit of helpful debugging info when we get a consistancy check problem.
-rw-r--r-- | CGI.pl | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -451,7 +451,12 @@ sub make_options { "Please send mail to " . Param("maintainer") . " with " . "details of what you were doing when this message " . "appeared. Thank you.\n"; - PutFooter(); + if (!$src) { + $src = ["???null???"]; + } + print "<pre>src = " . value_quote(join(' ', @$src)) . "\n"; + print "default = " . value_quote($default) . "</pre>"; + Putfooter(); # confess "Gulp."; exit 0; |