diff options
author | Marcus Boerger <helly@php.net> | 2004-07-20 18:22:31 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-07-20 18:22:31 +0000 |
commit | 446cc107b83531800402d1adf4da3170ba1879ec (patch) | |
tree | f9b593ad8c4fd050712f562359a136682c3852c5 /ext/reflection/php_reflection.c | |
parent | c210c68add35bc19305fb772e2e96278ea350dfe (diff) | |
download | php-git-446cc107b83531800402d1adf4da3170ba1879ec.tar.gz |
- Fixed bug 28895 again (long live the dead)
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index e3e0607850..c59a11d9a5 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -2387,7 +2387,7 @@ ZEND_METHOD(reflection_class, isFinal) Returns whether this class is abstract */ ZEND_METHOD(reflection_class, isAbstract) { - _class_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_IMPLICIT_ABSTRACT_CLASS); + _class_check_flag(INTERNAL_FUNCTION_PARAM_PASSTHRU, ZEND_ACC_IMPLICIT_ABSTRACT_CLASS|ZEND_ACC_EXPLICIT_ABSTRACT_CLASS); } /* }}} */ |