1
0
mirror of https://github.com/php/php-src.git synced 2026-04-12 02:23:18 +02:00

renamed _string_value_() to __string_value().

This commit is contained in:
Thies C. Arntzen
2000-03-18 14:55:29 +00:00
parent c059cd6181
commit 3092c10e93

View File

@@ -141,7 +141,7 @@ ZEND_API void zend_make_printable_zval(zval *expr, zval *expr_copy, int *use_cop
break;
case IS_OBJECT: {
zval function_name;
ZVAL_STRING(&function_name,"_string_value_",1);
ZVAL_STRING(&function_name,"__string_value",1);
if (call_user_function(NULL, expr, &function_name, expr_copy, 0, NULL)==FAILURE) {
expr_copy->value.str.len = sizeof("Object")-1;