helly           Sun Dec 11 12:37:39 2005 EDT

  Modified files:              (Branch: PHP_5_1)
    /php-src/ext/reflection     php_reflection.c 
  Log:
  - Fix MFH (oversight problem)
  
  
http://cvs.php.net/diff.php/php-src/ext/reflection/php_reflection.c?r1=1.164.2.14&r2=1.164.2.15&ty=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.164.2.14 
php-src/ext/reflection/php_reflection.c:1.164.2.15
--- php-src/ext/reflection/php_reflection.c:1.164.2.14  Tue Dec  6 02:25:29 2005
+++ php-src/ext/reflection/php_reflection.c     Sun Dec 11 12:37:39 2005
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_reflection.c,v 1.164.2.14 2005/12/06 02:25:29 sniper Exp $ */
+/* $Id: php_reflection.c,v 1.164.2.15 2005/12/11 12:37:39 helly Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -2924,7 +2924,7 @@
        int name_len, classname_len;
 
        METHOD_NOTSTATIC(reflection_class_ptr);
-       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "t", &name, 
&name_len) == FAILURE) {
+       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &name, 
&name_len) == FAILURE) {
                return;
        }
 
@@ -4254,7 +4254,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.164.2.14 2005/12/06 02:25:29 sniper Exp $");
+       php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 
1.164.2.15 2005/12/11 12:37:39 helly 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