ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> php-cvs
php-cvs
[PHP-CVS] cvs: php-src /ext/reflection php_reflection.c
by Antony Dovgal other posts by this author
Jun 1 2006 5:25AM messages near this date
[PHP-CVS] cvs: php-src(PHP_5_2) /ext/reflection php_reflection.c | [PHP-CVS] cvs: php-src /ext/reflection php_reflection.c
tony2001		Thu Jun  1 12:25:32 2006 UTC

  Modified files:              
    /php-src/ext/reflection	php_reflection.c 
  Log:
  no need to fetch trsm_ls when it's already available
  
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/reflection/php_reflection.c?r1=1.229&r2=1.230&dif
f_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.229 php-src/ext/reflection/php_reflection.
c:1.230
--- php-src/ext/reflection/php_reflection.c:1.229	Wed Mar 29 15:08:52 2006
+++ php-src/ext/reflection/php_reflection.c	Thu Jun  1 12:25:32 2006
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: php_reflection.c,v 1.229 2006/03/29 15:08:52 tony2001 Exp $ */
+/* $Id: php_reflection.c,v 1.230 2006/06/01 12:25:32 tony2001 Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -2955,7 +2955,6 @@
 	long filter = va_arg(args, long);
 
 	if (mptr-> common.fn_flags & filter) {
-		TSRMLS_FETCH();
 		ALLOC_ZVAL(method);
 		reflection_method_factory(ce, mptr, method TSRMLS_CC);
 		add_next_index_zval(retval, method);
@@ -3092,7 +3091,6 @@
 	}
 	
 	if (pptr-> flags	& filter) {
-		TSRMLS_FETCH();
 		ALLOC_ZVAL(property);
 		reflection_property_factory(ce, pptr, property TSRMLS_CC);
 		add_next_index_zval(retval, property);
@@ -4544,7 +4542,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.229 2006/03/29 15:08:52 
tony2001 Exp $");
+	php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.230 2006/06/01 12:25:32 
tony2001 Exp $");
 
 	php_info_print_table_end();
 } /* }}} */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Thread:
Antony Dovgal
Marcus Boerger
Hannes Magnusson
Marcus Boerger
Marcus Boerger
Steph Fox
Marcus Boerger
Antony Dovgal

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved