From 142db4af568cfea910a91d3119c6ab5283da63b6 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Mon, 5 Sep 2011 15:19:25 +0000 Subject: Fix PHP 5.3.8 problem with is_a() called with string as first argument --- it_debug.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_debug.class b/it_debug.class index 4a091d3..2ccf734 100644 --- a/it_debug.class +++ b/it_debug.class @@ -125,7 +125,7 @@ function dump($args) foreach ($args as $arg) { $var = array_shift($argnames); - $item = gettype($arg) == 'resource' || is_array($arg) && isset($arg['GLOBALS']) || is_a($arg, "SimpleXMLElement") ? trim(print_r($arg, true)) : trim(var_export($arg, true)); + $item = gettype($arg) == 'resource' || is_array($arg) && isset($arg['GLOBALS']) || is_object($arg) && is_a($arg, "SimpleXMLElement") ? trim(print_r($arg, true)) : trim(var_export($arg, true)); # Replace PHP 5 var_export object representation by old style while (preg_match("#(.*\b)(\w+)::__set_state\(array\(([^()]+)\)\)(.*)#s", $item, $regs)) -- cgit v1.2.3