From 32f7337bd4a25e8a2d481fe78437412bb93a2985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Andr=C3=A9=20dos=20Santos=20Lopes?= Date: Sat, 29 Oct 2011 23:17:18 +0000 Subject: - Reverted changes that required constructor overrides to invoke the parent constructor in several SPL classes and applied 5.3 fixes instead. Related bugs: #54384, #55175 and #55300 --- ext/spl/php_spl.h | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'ext/spl/php_spl.h') diff --git a/ext/spl/php_spl.h b/ext/spl/php_spl.h index 7c6e174e97..500f7ef287 100755 --- a/ext/spl/php_spl.h +++ b/ext/spl/php_spl.h @@ -63,15 +63,13 @@ PHP_MINFO_FUNCTION(spl); ZEND_BEGIN_MODULE_GLOBALS(spl) - char * autoload_extensions; - HashTable * autoload_functions; - int autoload_running; - int autoload_extensions_len; - intptr_t hash_mask_handle; - intptr_t hash_mask_handlers; - int hash_mask_init; - zend_function constr_wrapper_fun; - int (*validating_fun)(void *object_data TSRMLS_DC); + char * autoload_extensions; + HashTable * autoload_functions; + int autoload_running; + int autoload_extensions_len; + intptr_t hash_mask_handle; + intptr_t hash_mask_handlers; + int hash_mask_init; ZEND_END_MODULE_GLOBALS(spl) #ifdef ZTS @@ -89,8 +87,6 @@ PHP_FUNCTION(class_uses); PHPAPI void php_spl_object_hash(zval *obj, char* md5str TSRMLS_DC); -zend_function *php_spl_get_constructor_helper(zval *object, int (*validating_fun)(void *object_data TSRMLS_DC) TSRMLS_DC); - #endif /* PHP_SPL_H */ /* -- cgit v1.2.1