diff options
author | dreamszhu <dreamsxin@qq.com> | 2017-01-01 09:45:09 +0800 |
---|---|---|
committer | Joe Watkins <krakjoe@php.net> | 2017-01-01 06:48:02 +0000 |
commit | 705f60e481b891d009ec9bb4c88390545ff95880 (patch) | |
tree | dab1766160f2700ed99d19674c488f8682ea666b /ext | |
parent | 242d924e599d2c92a5d12873ad1564f7d44f7126 (diff) | |
download | php-git-705f60e481b891d009ec9bb4c88390545ff95880.tar.gz |
Fix dom class can't be inherited by the internal class
Diffstat (limited to 'ext')
-rw-r--r-- | ext/dom/php_dom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c index 9879d81c1c..a59e63a87c 100644 --- a/ext/dom/php_dom.c +++ b/ext/dom/php_dom.c @@ -1075,7 +1075,7 @@ static dom_object* dom_objects_set_class(zend_class_entry *class_type, zend_bool dom_object *intern = ecalloc(1, sizeof(dom_object) + zend_object_properties_size(class_type)); zend_class_entry *base_class = class_type; - while (base_class->type != ZEND_INTERNAL_CLASS && base_class->parent != NULL) { + while ((base_class->type != ZEND_INTERNAL_CLASS || base_class->info.internal.module != &dom_module_entry) && base_class->parent != NULL) { base_class = base_class->parent; } |