diff options
author | Christian Stocker <chregu@php.net> | 2002-04-05 15:47:08 +0000 |
---|---|---|
committer | Christian Stocker <chregu@php.net> | 2002-04-05 15:47:08 +0000 |
commit | 672586726ee02f9ab0c6a5db0b4e03f3d15ca49d (patch) | |
tree | 558edd8ce34202294a5f458cb92e79a40267a9b6 /ext/domxml/php_domxml.c | |
parent | e448122bd5ee0444a28862fbae456efcdd8ad95c (diff) | |
download | php-git-672586726ee02f9ab0c6a5db0b4e03f3d15ca49d.tar.gz |
oops. that was an error not detected in shared library mode ...
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 74712773fc..59fda9b4bc 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -1240,7 +1240,7 @@ PHP_MINIT_FUNCTION(domxml) domxmldoc_class_entry = zend_register_internal_class_ex(&ce, domxmlnode_class_entry, NULL TSRMLS_CC); INIT_OVERLOADED_CLASS_ENTRY(ce, "DomParser", php_domxmlparser_class_functions, NULL, NULL, NULL); - domxmlparser_class_entry = zend_register_internal_class_ex(&ce, domxmlparser_class_entry, NULL TSRMLS_CC); + domxmlparser_class_entry = zend_register_internal_class_ex(&ce, NULL, NULL TSRMLS_CC); INIT_OVERLOADED_CLASS_ENTRY(ce, "DomDocumentType", php_domxmldoctype_class_functions, NULL, NULL, NULL); domxmldoctype_class_entry = zend_register_internal_class_ex(&ce, domxmlnode_class_entry, NULL TSRMLS_CC); |