diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-24 08:02:47 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-24 08:02:47 +0000 |
commit | 60bb032d75852a65b7de91a6391f595bc2f04edb (patch) | |
tree | 0e20c8c42176905ce51f1d6601edf777b62fcea7 /src/SemanticScuttle | |
parent | 73b11a40be224a2e12eda75aeb72d3f2a72f7477 (diff) | |
download | semanticscuttle-60bb032d75852a65b7de91a6391f595bc2f04edb.tar.gz semanticscuttle-60bb032d75852a65b7de91a6391f595bc2f04edb.tar.bz2 |
print full backtrace on error
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@399 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'src/SemanticScuttle')
-rw-r--r-- | src/SemanticScuttle/functions.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/SemanticScuttle/functions.php b/src/SemanticScuttle/functions.php index 08d5f33..663ed25 100644 --- a/src/SemanticScuttle/functions.php +++ b/src/SemanticScuttle/functions.php @@ -160,6 +160,8 @@ function message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', if ($err_line != '' && $err_file != '') $debug_text .= '</br /><br />'. T_('Line') .' : '. $err_line .'<br />'. T_('File') .' :'. $err_file; + + debug_print_backtrace(); } switch($msg_code) { |