summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorJoseph Tate <jtate@php.net>2002-06-10 14:48:28 +0000
committerJoseph Tate <jtate@php.net>2002-06-10 14:48:28 +0000
commit5bb233a931987441f0dbaa0770bab917df17acd9 (patch)
tree1b95b5f0f85624f1ee6fd6df9481f0d1f020c71a /ext/domxml/php_domxml.c
parentf9fa95067b8f0c10646583f8595036885343f13d (diff)
downloadphp-git-5bb233a931987441f0dbaa0770bab917df17acd9.tar.gz
#Undeprecated attribute access methods
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c3
1 files changed, 2 insertions, 1 deletions
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)