From: Andi Gutmans Date: Sun, 29 Jul 2001 08:20:30 +0000 (+0000) Subject: - And more... X-Git-Tag: PRE_ENGINE2_SPLIT~220 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=442890f3e18f6daa283e07d5c1e37af689bda690;p=php - And more... --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 60c7b61ee7..aa04d039f4 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -1845,7 +1845,7 @@ static void user_tick_function_call(user_tick_function_entry *tick_fe) Z_TYPE_PP(obj) == IS_OBJECT && Z_TYPE_PP(method) == IS_STRING) { php_error(E_WARNING, "Unable to call %s::%s() - function does not exist", - (*obj)->value.obj.ce->name, Z_STRVAL_PP(method)); + Z_OBJCE_PP(obj)->name, Z_STRVAL_PP(method)); } else php_error(E_WARNING, "Unable to call tick function"); }