From: Derick Rethans Date: Sat, 8 Dec 2001 23:46:19 +0000 (+0000) Subject: - Remove debug code X-Git-Tag: ChangeLog~76 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a7b9d5590ba16f7e74a66be9ac6c76c16d8ec1f5;p=php - Remove debug code --- diff --git a/ext/standard/var.c b/ext/standard/var.c index b37f575161..9ca00e85eb 100644 --- a/ext/standard/var.c +++ b/ext/standard/var.c @@ -158,11 +158,7 @@ static int php_array_element_export(zval **zv, int num_args, va_list args, zend_ void php_var_export(zval **struc, int level TSRMLS_DC) { HashTable *myht; -/* - if (level > 1) { - php_printf("%*c", level - 1, ' '); - } -*/ + switch (Z_TYPE_PP(struc)) { case IS_BOOL: php_printf("%s", Z_LVAL_PP(struc) ? "true" : "false");