From: Johannes Schlüter Date: Fri, 24 Feb 2006 13:44:46 +0000 (+0000) Subject: - deprecated not static X-Git-Tag: RELEASE_1_2~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ad7d57a97157743c99221dc3ee5bce93f722c92;p=php - deprecated not static --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 1605063edf..45946393b7 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -4438,7 +4438,7 @@ PHP_MINIT_FUNCTION(reflection) /* {{{ */ reflection_register_implement(reflection_function_ptr, reflector_ptr TSRMLS_CC); zend_declare_property_string(reflection_function_ptr, "name", sizeof("name")-1, "", ZEND_ACC_PUBLIC TSRMLS_CC); - REGISTER_REFLECTION_CLASS_CONST_LONG(function, "IS_STATIC", ZEND_ACC_DEPRECATED); + REGISTER_REFLECTION_CLASS_CONST_LONG(function, "IS_DEPRECATED", ZEND_ACC_DEPRECATED); INIT_CLASS_ENTRY(_reflection_entry, "ReflectionParameter", reflection_parameter_functions); _reflection_entry.create_object = reflection_objects_new;