]> granicus.if.org Git - php/commitdiff
#Undeprecated attribute access methods
authorJoseph Tate <jtate@php.net>
Mon, 10 Jun 2002 14:48:28 +0000 (14:48 +0000)
committerJoseph Tate <jtate@php.net>
Mon, 10 Jun 2002 14:48:28 +0000 (14:48 +0000)
ext/domxml/php_domxml.c

index fd8644020cd07f3b14b68089950eaefabbfa1240..d18f9432e6405f4eb008789f2f4f79493b87b21c 100644 (file)
@@ -441,10 +441,11 @@ static zend_function_entry php_xpathobject_class_functions[] = {
 
 static zend_function_entry php_domxmlattr_class_functions[] = {
        PHP_FALIAS(domattribute,                        domxml_doc_create_attribute,    NULL)
+       /* DOM_XML Consistent calls */
        PHP_FALIAS(node_name,                           domxml_attr_name,                               NULL)
        PHP_FALIAS(node_value,                          domxml_attr_value,                              NULL)
        PHP_FALIAS(node_specified,                      domxml_attr_specified,                  NULL)
-       /* Deprecated left in for BC */
+       /* W3C compliant calls */
        PHP_FALIAS(name,                                        domxml_attr_name,                               NULL)
        PHP_FALIAS(value,                                       domxml_attr_value,                              NULL)
        PHP_FALIAS(specified,                           domxml_attr_specified,                  NULL)