diff options
author | Derek Jones <derek.jones@ellislab.com> | 2011-10-18 17:03:27 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2011-10-18 17:03:27 +0200 |
commit | bf18178de31418d3a8202a82a34e24bb7cb84579 (patch) | |
tree | f7c279eea53976fc0b3c0298196ca7529c7fd91c /application | |
parent | 961684280faccb7f32da700201422ecd8a454a0a (diff) | |
parent | 5160cc9a869e27a696f93f64127eef15c54f5d64 (diff) |
Merge pull request #569 from timw4mail/patch-2
Added simple backtrace to php error file
Diffstat (limited to 'application')
-rw-r--r-- | application/config/constants.php | 12 | ||||
-rw-r--r-- | application/errors/error_php.php | 17 |
2 files changed, 29 insertions, 0 deletions
diff --git a/application/config/constants.php b/application/config/constants.php index 4a879d360..ee177f5ad 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_DEBUG_BACKTRACE', TRUE); + /* End of file constants.php */ /* Location: ./application/config/constants.php */
\ No newline at end of file diff --git a/application/errors/error_php.php b/application/errors/error_php.php index f085c2037..514e477e8 100644 --- a/application/errors/error_php.php +++ b/application/errors/error_php.php @@ -7,4 +7,21 @@ <p>Filename: <?php echo $filepath; ?></p> <p>Line Number: <?php echo $line; ?></p> +<?php if(defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE === TRUE): ?> + + <p>Backtrace: </p> + <?php foreach(debug_backtrace() as $error): ?> + + <?php if(isset($error['file']) && ! stristr($error['file'], SYSDIR)): ?> + <p style="margin-left:10px"> + File: <?php echo $error['file'] ?><br /> + Line: <?php echo $error['line'] ?><br /> + Function: <?php echo $error['function'] ?> + </p> + <? endif ?> + + <? endforeach ?></p> + +<?php endif ?> + </div>
\ No newline at end of file |