diff options
author | Christian Schneider | 2007-11-06 23:36:24 +0000 |
---|---|---|
committer | Christian Schneider | 2007-11-06 23:36:24 +0000 |
commit | e70998a3e1baf625749f77f9ad37a427d5a03e96 (patch) | |
tree | 950c4169d9fd83866ec9a5123d3670abc16eff5e /it_debug.class | |
parent | e838ddaf18a1fb2dda137b7d9d87db1e162360cc (diff) | |
download | itools-e70998a3e1baf625749f77f9ad37a427d5a03e96.tar.gz itools-e70998a3e1baf625749f77f9ad37a427d5a03e96.tar.bz2 itools-e70998a3e1baf625749f77f9ad37a427d5a03e96.zip |
Remove dumping of class vars again, use ED(get_class_vars("map")) instead
Diffstat (limited to 'it_debug.class')
-rw-r--r-- | it_debug.class | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/it_debug.class b/it_debug.class index 2cefa80..3aedda7 100644 --- a/it_debug.class +++ b/it_debug.class @@ -128,9 +128,6 @@ function dump($args) foreach ($args as $arg) { $var = array_shift($argnames); - 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)); # Replace PHP 5 var_export object representation by old style |