]> granicus.if.org Git - php/commitdiff
Unicode support
authorDmitry Stogov <dmitry@php.net>
Wed, 22 Feb 2006 12:02:44 +0000 (12:02 +0000)
committerDmitry Stogov <dmitry@php.net>
Wed, 22 Feb 2006 12:02:44 +0000 (12:02 +0000)
Zend/zend_API.c

index 035f41285710ee0da8317986fd27098ada2bee70..283edd4761b80aa1fc6d6ea59b944c12c3969608 100644 (file)
@@ -2578,7 +2578,7 @@ static int zend_is_callable_check_func(int check_flags, zval ***zobj_ptr_ptr, ze
                                if ((check_flags & IS_CALLABLE_CHECK_IS_STATIC) != 0) {
                                        retval = 0;
                                } else {
-                                       zend_error(E_STRICT, "Non-static method %s::%s() cannot be called statically", (*ce_ptr)->name, fptr->common.function_name);
+                                       zend_error(E_STRICT, "Non-static method %v::%v() cannot be called statically", (*ce_ptr)->name, fptr->common.function_name);
                                }
                        }
                        if (retval && (check_flags & IS_CALLABLE_CHECK_NO_ACCESS) == 0) {