From a7b9d5590ba16f7e74a66be9ac6c76c16d8ec1f5 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Sat, 8 Dec 2001 23:46:19 +0000 Subject: [PATCH] - Remove debug code --- ext/standard/var.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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"); -- 2.50.1