mirror of
https://github.com/php/php-src.git
synced 2026-03-29 03:32:20 +02:00
Revert "Fix dom class can't be inherited by the internal class"
This reverts commit 705f60e481.
This commit is contained in:
@@ -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->info.internal.module != &dom_module_entry) && base_class->parent != NULL) {
|
||||
while (base_class->type != ZEND_INTERNAL_CLASS && base_class->parent != NULL) {
|
||||
base_class = base_class->parent;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user