diff options
author | Christian Schneider | 2007-11-06 13:28:24 +0000 |
---|---|---|
committer | Christian Schneider | 2007-11-06 13:28:24 +0000 |
commit | fa96a9bf62662fc53342ffc2bf046924d4f3f822 (patch) | |
tree | 2bc615f5fef936dd3a2beb4fcf317e3c982c0a1c /it_debug.class | |
parent | 4e878df2f525d032b2f22e33d090cb07fc207042 (diff) | |
download | itools-fa96a9bf62662fc53342ffc2bf046924d4f3f822.tar.gz itools-fa96a9bf62662fc53342ffc2bf046924d4f3f822.tar.bz2 itools-fa96a9bf62662fc53342ffc2bf046924d4f3f822.zip |
Do not try to load class to avoid recursion from ultraclassloader EDC
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 6fcc34a..2cefa80 100644 --- a/it_debug.class +++ b/it_debug.class @@ -128,7 +128,7 @@ function dump($args) foreach ($args as $arg) { $var = array_shift($argnames); - if (gettype($arg) == "string" && class_exists($arg)) + if (gettype($arg) == "string" && class_exists($arg, false)) $arg = get_class_vars($arg); $item = gettype($arg) == 'resource' ? trim(print_r($arg, true)) : trim(var_export($arg, true)); |