]> granicus.if.org Git - php/commitdiff
rename the object name for comment nodes to domcoment
authorChristian Stocker <chregu@php.net>
Sat, 18 May 2002 14:21:46 +0000 (14:21 +0000)
committerChristian Stocker <chregu@php.net>
Sat, 18 May 2002 14:21:46 +0000 (14:21 +0000)
ext/domxml/php_domxml.c

index f62099068d018889c87133693edede4043c25fbe..0e5fa316767dc643fa38978df94cb6daa43ec216 100644 (file)
@@ -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);