summaryrefslogtreecommitdiffstats
path: root/Bugzilla.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-08-07 21:19:35 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-08-07 21:19:35 +0200
commit07a5d9cc6661d46d91c291dc2105fb81a5cf4298 (patch)
treeea1b5fe1d3cd5b94e48195e2be52393848c48019 /Bugzilla.pm
parentcb14de16717a12c32632d15a95e34b36edb7d178 (diff)
downloadbugzilla-07a5d9cc6661d46d91c291dc2105fb81a5cf4298.tar.gz
bugzilla-07a5d9cc6661d46d91c291dc2105fb81a5cf4298.tar.xz
Quick fix for file permissions error
Diffstat (limited to 'Bugzilla.pm')
-rw-r--r--Bugzilla.pm4
1 files changed, 3 insertions, 1 deletions
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 {