From b87d3d76d5c2292a9db0b157a8a279ff45177bd2 Mon Sep 17 00:00:00 2001 From: czaks Date: Sun, 20 Apr 2014 23:16:15 +0200 Subject: [PATCH] improve debugging --- inc/display.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/inc/display.php b/inc/display.php index 13425c48..f7fe1620 100644 --- a/inc/display.php +++ b/inc/display.php @@ -88,6 +88,10 @@ function error($message, $priority = true, $debug_stuff = false) { $debug_stuff = array_combine(array('SQLSTATE', 'Error code', 'Error message'), $db_error); } + if ($config['debug']) { + $debug_stuff['backtrace'] = debug_backtrace(); + } + // Return the bad request header, necessary for AJAX posts // czaks: is it really so? the ajax errors only work when this is commented out // better yet use it when ajax is disabled