From 706a0364e6d834936761eec9d480033c88892d85 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 10 Nov 2006 14:21:13 +0000 Subject: [PATCH] Unicode support --- Zend/zend_object_handlers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_object_handlers.c b/Zend/zend_object_handlers.c index 03953182ea..53ead1521f 100644 --- a/Zend/zend_object_handlers.c +++ b/Zend/zend_object_handlers.c @@ -486,7 +486,7 @@ zval *zend_std_read_dimension(zval *object, zval *offset, int type TSRMLS_DC) retval->is_ref = 0; retval->refcount = 0; if (Z_TYPE_P(retval) != IS_OBJECT) { - zend_error(E_NOTICE, "Indirect modification of overloaded element of %s has no effect", ce->name); + zend_error(E_NOTICE, "Indirect modification of overloaded element of %v has no effect", ce->name); } } -- 2.50.1