sebastian Thu, 10 Sep 2009 05:15:24 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=288220
Log: Use getThis() correctly. Changed paths: U php/php-src/trunk/ext/reflection/php_reflection.c Modified: php/php-src/trunk/ext/reflection/php_reflection.c =================================================================== --- php/php-src/trunk/ext/reflection/php_reflection.c 2009-09-10 05:07:22 UTC (rev 288219) +++ php/php-src/trunk/ext/reflection/php_reflection.c 2009-09-10 05:15:24 UTC (rev 288220) @@ -3122,8 +3122,7 @@ return; } - intern = getThis(); - intern = (reflection_object *) zend_object_store_get_object(intern TSRMLS_CC); + intern = (reflection_object *) zend_object_store_get_object(getThis() TSRMLS_CC); if (intern == NULL) { return; @@ -4934,8 +4933,7 @@ return; } - intern = getThis(); - intern = (reflection_object *) zend_object_store_get_object(intern TSRMLS_CC); + intern = (reflection_object *) zend_object_store_get_object(getThis() TSRMLS_CC); if (intern == NULL) { return;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php