]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
removing "Use Carp" and "sub die_with_dignity" that I was supposed to remove from...
authorjustdave%syndicomm.com <>
Wed, 4 Jul 2001 12:28:39 +0000 (12:28 +0000)
committerjustdave%syndicomm.com <>
Wed, 4 Jul 2001 12:28:39 +0000 (12:28 +0000)
globals.pl

index 4abb4a065787165d3eafcdf3d9b9c2df8203cfa8..81efb4745caa7a257d2435f2f71f10820fb5ae3b 100644 (file)
@@ -68,7 +68,7 @@ use DBI;
 
 use Date::Format;               # For time2str().
 use Date::Parse;               # For str2time().
-use Carp;                       # for confess
+#use Carp;                       # for confess
 use RelationSet;
 
 # $ENV{PATH} is not taint safe
@@ -87,12 +87,12 @@ $::dbwritesallowed = 1;
 # Joe Robins, 7/5/00
 $::superusergroupset = "9223372036854775807";
 
-sub die_with_dignity {
-    my ($err_msg) = @_;
-    print $err_msg;
-    confess($err_msg);
-}
-$::SIG{__DIE__} = \&die_with_dignity;
+#sub die_with_dignity {
+#    my ($err_msg) = @_;
+#    print $err_msg;
+#    confess($err_msg);
+#}
+#$::SIG{__DIE__} = \&die_with_dignity;
 
 sub ConnectToDatabase {
     my ($useshadow) = (@_);