summaryrefslogtreecommitdiff
path: root/it.class
diff options
context:
space:
mode:
Diffstat (limited to 'it.class')
-rw-r--r--it.class10
1 files changed, 4 insertions, 6 deletions
diff --git a/it.class b/it.class
index 226a88d..eb3cafe 100644
--- a/it.class
+++ b/it.class
@@ -99,7 +99,7 @@ function error($p = array(), $body = "", $to = "")
$p = array();
}
- $p += array('timewindow' => 25*3600, 'graceperiod' => 60);
+ $p += array('timewindow' => 25*3600, 'graceperiod' => 60, 'backtraceskip' => 0);
if (!$to)
$to = strtr(trim(@file_get_contents($GLOBALS['ULTRAHOME'] . "/.diffnotice")), array("\n"=>',', ' '=>''));
@@ -134,12 +134,9 @@ function error($p = array(), $body = "", $to = "")
$title="Error in $url";
if (!function_exists('memory_get_usage') || (memory_get_usage() < 50000000))
- {
- $trace = "\n\nTrace: " . it_debug::backtrace();
- $stack = "\n\nStack:\n" . print_r(debug_backtrace(), true);
- }
+ $trace = "\n\nTrace: " . it_debug::backtrace($p['backtraceskip']);
- $body .= "\nUrl: $url$trace\n\n\$_REQUEST: ".print_r($_REQUEST, true) . "\n\$_SERVER: " . print_r($_SERVER, true) . $stack;
+ $body .= "\nUrl: $url$trace";
if (!ereg('live', $GLOBALS['ULTRASERVERTYPE']))
{
@@ -152,6 +149,7 @@ function error($p = array(), $body = "", $to = "")
EDC('exec', $cmd);
if (($pipe = popen($cmd, "w")))
{
+ $body .= "\n\nLocals" . print_r($p['locals'], true) . "\n\n\$_REQUEST: ".print_r($_REQUEST, true) . "\n\$_SERVER: " . print_r($_SERVER, true) . "\n\nStack:\n" . print_r(debug_backtrace(), true);
fputs($pipe, $body);
pclose($pipe);
}