diff options
author | Christian Schneider | 2007-11-20 15:17:20 +0000 |
---|---|---|
committer | Christian Schneider | 2007-11-20 15:17:20 +0000 |
commit | f8edb35a64b3be3c2a670e1b2248b50926bd2de7 (patch) | |
tree | 98c777d92a37f08dd885c4ed04a205ae2ed91e2f /it_debug.class | |
parent | bc15ede59f330ba6f41da754d68a6d44fb7e0237 (diff) | |
download | itools-f8edb35a64b3be3c2a670e1b2248b50926bd2de7.tar.gz itools-f8edb35a64b3be3c2a670e1b2248b50926bd2de7.tar.bz2 itools-f8edb35a64b3be3c2a670e1b2248b50926bd2de7.zip |
Also support auto_prepend_local.php
Diffstat (limited to 'it_debug.class')
-rw-r--r-- | it_debug.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_debug.class b/it_debug.class index e89dc1c..22f0d5a 100644 --- a/it_debug.class +++ b/it_debug.class @@ -181,7 +181,7 @@ function backtrace($skip = 0) { if (($fn = $call['file'])) { - $fn = (it::match('auto_prepend.php', $fn) ? basename(dirname($fn)) . "/" : "") . basename($fn); + $fn = (it::match('auto_prepend', $fn) ? basename(dirname($fn)) . "/" : "") . basename($fn); $result[] = $fn . ":" . $call['line']; } } |