summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)