diff options
author | Joseph Tate <jtate@php.net> | 2002-04-05 18:18:23 +0000 |
---|---|---|
committer | Joseph Tate <jtate@php.net> | 2002-04-05 18:18:23 +0000 |
commit | 7954c7bafe7efa972f3a76cc691836ceab9c25de (patch) | |
tree | 6c49f8ee3bc2d735604c7fa0d8e1f1001c514268 /ext/domxml/php_domxml.c | |
parent | 313503aa9265a89549ceb216ad5a1d1f073f8cc1 (diff) | |
download | php-git-7954c7bafe7efa972f3a76cc691836ceab9c25de.tar.gz |
Added unlink_node alias for consistency
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 59fda9b4bc..5f2a792f97 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -329,6 +329,7 @@ static zend_function_entry php_domxmlnode_class_functions[] = { PHP_FALIAS(has_attributes, domxml_node_has_attributes, NULL) PHP_FALIAS(node, domxml_node, NULL) PHP_FALIAS(unlink, domxml_node_unlink_node, NULL) + PHP_FALIAS(unlink_node, domxml_node_unlink_node, NULL) PHP_FALIAS(replace_node, domxml_node_replace_node, NULL) PHP_FALIAS(set_content, domxml_node_set_content, NULL) PHP_FALIAS(get_content, domxml_node_get_content, NULL) |