diff options
author | Derick Rethans <derick@php.net> | 2001-12-08 23:46:19 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2001-12-08 23:46:19 +0000 |
commit | a7b9d5590ba16f7e74a66be9ac6c76c16d8ec1f5 (patch) | |
tree | 86a025fa208145fece068a545ec59e7a22e1d520 /ext | |
parent | 3cb1db985e6a89fa9d5b590d52d4f04f37d61bd4 (diff) | |
download | php-git-a7b9d5590ba16f7e74a66be9ac6c76c16d8ec1f5.tar.gz |
- Remove debug code
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/var.c | 6 |
1 files changed, 1 insertions, 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"); |