]> granicus.if.org Git - php/commitdiff
- Remove debug code
authorDerick Rethans <derick@php.net>
Sat, 8 Dec 2001 23:46:19 +0000 (23:46 +0000)
committerDerick Rethans <derick@php.net>
Sat, 8 Dec 2001 23:46:19 +0000 (23:46 +0000)
ext/standard/var.c

index b37f575161c1489f7f1bbde5e23f6ca49a6ae710..9ca00e85eb48e11275901521ccc304a204bbf9b9 100644 (file)
@@ -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");