summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2003-03-25 20:36:26 +0000
committerAndi Gutmans <andi@php.net>2003-03-25 20:36:26 +0000
commit85d2c35bfa54ecaf4ad8579bf67363d78aefd381 (patch)
treee1219c21d00429e1bef71863425b18a0f7457403
parent2e0651f37868b9f0f2ff48a051609f2c3c49afab (diff)
downloadphp-git-85d2c35bfa54ecaf4ad8579bf67363d78aefd381.tar.gz
- Temporarily fix problem with inheriting from an internal class. This might
- need some rework in the future (thanks to Marcus)
-rw-r--r--Zend/zend_compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index f53aca28c4..6329030910 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -1601,6 +1601,7 @@ static void do_inherit_parent_constructor(zend_class_entry *ce)
if (!ce->__call) {
ce->__call = ce->parent->__call;
}
+ ce->create_object = ce->parent->create_object;
}