From 07a5d9cc6661d46d91c291dc2105fb81a5cf4298 Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Tue, 7 Aug 2012 15:19:35 -0400 Subject: Quick fix for file permissions error --- Bugzilla.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Bugzilla.pm b/Bugzilla.pm index 29467ef1f..07026b4f1 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -26,6 +26,8 @@ package Bugzilla; use strict; +# FIXME : Line to be removed + # We want any compile errors to get to the browser, if possible. BEGIN { # This makes sure we're in a CGI. @@ -85,7 +87,7 @@ use constant SHUTDOWNHTML_RETRY_AFTER => 3600; # Global Code ##################################################################### -# $::SIG{__DIE__} = i_am_cgi() ? \&CGI::Carp::confess : \&Carp::confess; +$::SIG{__DIE__} = i_am_cgi() ? \&CGI::Carp::confess : \&Carp::confess; # Note that this is a raw subroutine, not a method, so $class isn't available. sub init_page { -- cgit v1.2.3-24-g4f1b