From 5bb233a931987441f0dbaa0770bab917df17acd9 Mon Sep 17 00:00:00 2001 From: Joseph Tate Date: Mon, 10 Jun 2002 14:48:28 +0000 Subject: #Undeprecated attribute access methods --- ext/domxml/php_domxml.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext/domxml/php_domxml.c') diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index fd8644020c..d18f9432e6 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -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) -- cgit v1.2.1