summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/config/constants.php12
-rw-r--r--index.php1
2 files changed, 12 insertions, 1 deletions
diff --git a/application/config/constants.php b/application/config/constants.php
index 4a879d360..fcf1aae89 100644
--- a/application/config/constants.php
+++ b/application/config/constants.php
@@ -36,6 +36,18 @@ define('FOPEN_READ_WRITE_CREATE', 'a+b');
define('FOPEN_WRITE_CREATE_STRICT', 'xb');
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
+/*
+|--------------------------------------------------------------------------
+| Display Debug backtrace
+|--------------------------------------------------------------------------
+|
+| If set to true, a backtrace will be displayed along with php errors. If
+| error_reporting is disabled, the backtrace will not display, regardless
+| of this setting
+|
+*/
+define('SHOW_ERROR_BACKTRACE', TRUE);
+
/* End of file constants.php */
/* Location: ./application/config/constants.php */ \ No newline at end of file
diff --git a/index.php b/index.php
index 312fbfb1d..c50cfed43 100644
--- a/index.php
+++ b/index.php
@@ -34,7 +34,6 @@ if (defined('ENVIRONMENT'))
{
case 'development':
error_reporting(-1);
- define('SHOW_ERROR_BACKTRACE', TRUE);
break;
case 'testing':