diff options
author | Felipe Pena <felipe@php.net> | 2008-06-25 22:37:14 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-06-25 22:37:14 +0000 |
commit | 8f7f5c7d576e22b438237d561791373112e2c5fb (patch) | |
tree | 22df989dd0e6a37b9c6739648288d073e19fffda | |
parent | 2751fe0354c0d603202881a91d52e1b27559042b (diff) | |
download | php-git-8f7f5c7d576e22b438237d561791373112e2c5fb.tar.gz |
- MFB: Removed E_DEPRECATED on is_a()
(http://marc.info/?l=php-internals&m=121390431523970&w=2)
-rw-r--r-- | Zend/zend_builtin_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index ea144b9773..aa1ca439ca 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -126,7 +126,7 @@ static const zend_function_entry builtin_functions[] = { /* {{{ */ ZEND_FE(get_included_files, NULL) ZEND_FALIAS(get_required_files, get_included_files, NULL) ZEND_FE(is_subclass_of, NULL) - ZEND_DEP_FE(is_a, NULL) + ZEND_FE(is_a, NULL) ZEND_FE(get_class_vars, NULL) ZEND_FE(get_object_vars, NULL) ZEND_FE(get_class_methods, NULL) |