From 1369edc78cf84ba2a3cebec0a5c7ae519175de9d Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Thu, 6 Jul 2006 06:33:25 +0000 Subject: Bug 343361: die_with_dignity is useless inside of Bugzilla::CGI Patch By Max Kanat-Alexander r=LpSolit, r=colin, a=myk --- Bugzilla/CGI.pm | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'Bugzilla/CGI.pm') diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 688878b19..b4bcf20c8 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -50,18 +50,6 @@ $| = 1; $::SIG{TERM} = 'IGNORE'; $::SIG{PIPE} = 'IGNORE'; -# The following subroutine is for debugging purposes only. -# Uncommenting this sub and the $::SIG{__DIE__} trap underneath it will -# cause any fatal errors to result in a call stack trace to help track -# down weird errors. -#sub die_with_dignity { -# use Carp; # for confess() -# my ($err_msg) = @_; -# print $err_msg; -# confess($err_msg); -#} -#$::SIG{__DIE__} = \&die_with_dignity; - # CGI.pm uses AUTOLOAD, but explicitly defines a DESTROY sub. # We need to do so, too, otherwise perl dies when the object is destroyed # and we don't have a DESTROY method (because CGI.pm's AUTOLOAD will |die| -- cgit v1.2.3-24-g4f1b