From: Christian Stocker Date: Sat, 18 May 2002 14:21:46 +0000 (+0000) Subject: rename the object name for comment nodes to domcoment X-Git-Tag: php-4.3.0dev-ZendEngine2~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=81c8b8e7a4260df5997f80a011924cd3b5fd6232;p=php rename the object name for comment nodes to domcoment --- diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index f62099068d..0e5fa31676 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -1262,7 +1262,7 @@ PHP_MINIT_FUNCTION(domxml) Therefore nodes, attributes etc. may not be freed seperately. */ le_domxmlnodep = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domnode", module_number); - le_domxmlcommentp = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domnode", module_number); + le_domxmlcommentp = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domcomment", module_number); le_domxmlattrp = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domattribute", module_number); le_domxmltextp = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domtext", module_number); le_domxmlelementp = zend_register_list_destructors_ex(php_free_xml_node, NULL, "domelement", module_number);