johannes                Fri Feb 24 13:44:46 2006 UTC

  Modified files:              
    /php-src/ext/reflection     php_reflection.c 
  Log:
  - deprecated not static
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/reflection/php_reflection.c?r1=1.220&r2=1.221&diff_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.220 
php-src/ext/reflection/php_reflection.c:1.221
--- php-src/ext/reflection/php_reflection.c:1.220       Fri Feb 24 13:37:20 2006
+++ php-src/ext/reflection/php_reflection.c     Fri Feb 24 13:44:46 2006
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_reflection.c,v 1.220 2006/02/24 13:37:20 helly Exp $ */
+/* $Id: php_reflection.c,v 1.221 2006/02/24 13:44:46 johannes Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -4438,7 +4438,7 @@
        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;
@@ -4499,7 +4499,7 @@
        php_info_print_table_start();
        php_info_print_table_header(2, "Reflection", "enabled");
 
-       php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.220 
2006/02/24 13:37:20 helly Exp $");
+       php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.221 
2006/02/24 13:44:46 johannes Exp $");
 
        php_info_print_table_end();
 } /* }}} */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to