diff options
author | Uwe Steinmann <steinm@php.net> | 2001-01-26 08:15:57 +0000 |
---|---|---|
committer | Uwe Steinmann <steinm@php.net> | 2001-01-26 08:15:57 +0000 |
commit | bcac88e8fbf7b75f540715a9534934ff87ccf64b (patch) | |
tree | 44efa9c4ea249a1354ee902aa7e32dc71e45a6db /ext/domxml/php_domxml.h | |
parent | fa0b0286b8d56f13b63be87bf86d9393ad9a7e9d (diff) | |
download | php-git-bcac88e8fbf7b75f540715a9534934ff87ccf64b.tar.gz |
- changed naming of some functions (kept compatibility)
Diffstat (limited to 'ext/domxml/php_domxml.h')
-rw-r--r-- | ext/domxml/php_domxml.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/domxml/php_domxml.h b/ext/domxml/php_domxml.h index 106863eae4..a6358adaa9 100644 --- a/ext/domxml/php_domxml.h +++ b/ext/domxml/php_domxml.h @@ -49,10 +49,10 @@ PHP_FUNCTION(domxml_dumpmem); /* Class Node methods */ PHP_FUNCTION(domxml_attributes); -PHP_FUNCTION(domxml_getattr); -PHP_FUNCTION(domxml_setattr); +PHP_FUNCTION(domxml_get_attribute); +PHP_FUNCTION(domxml_set_attribute); PHP_FUNCTION(domxml_children); -PHP_FUNCTION(domxml_lastchild); +PHP_FUNCTION(domxml_last_child); PHP_FUNCTION(domxml_parent); PHP_FUNCTION(domxml_node); PHP_FUNCTION(domxml_new_child); |