diff options
author | Urban Müller | 2007-02-14 16:29:33 +0000 |
---|---|---|
committer | Urban Müller | 2007-02-14 16:29:33 +0000 |
commit | 644d2ce2a0908d7af4229bfed49a09af8b38d976 (patch) | |
tree | 6e25ccaf4a70abc8fa100daf1ae05945745aea47 | |
parent | a0596f05996540106895436cac38ac074db39364 (diff) | |
download | itools-644d2ce2a0908d7af4229bfed49a09af8b38d976.tar.gz itools-644d2ce2a0908d7af4229bfed49a09af8b38d976.tar.bz2 itools-644d2ce2a0908d7af4229bfed49a09af8b38d976.zip |
dont remove top stack level; seems NOT to be it::error
-rw-r--r-- | it.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ function error($p = array(), $body = "", $to = "") if (!$title) $title="Error in $url"; - $body .= "\nUrl: $url\n\n\$_REQUEST: ".print_r($_REQUEST, true). "\nStack:\n" . print_r(array_slice(debug_backtrace(), 1), true) . "\n\$_SERVER: " . print_r($_SERVER, true); + $body .= "\nUrl: $url\n\n\$_REQUEST: ".print_r($_REQUEST, true). "\nStack:\n" . print_r(debug_backtrace(), true) . "\n\$_SERVER: " . print_r($_SERVER, true); if (!ereg('live', $GLOBALS['ULTRASERVERTYPE'])) { |