summaryrefslogtreecommitdiff
path: root/ext/simplexml/simplexml.c
diff options
context:
space:
mode:
authorChristian Stocker <chregu@php.net>2004-07-25 14:59:21 +0000
committerChristian Stocker <chregu@php.net>2004-07-25 14:59:21 +0000
commit0936bfa42ccc94def35aae5e22cae3da00294782 (patch)
tree0603c891640ecfc1eacae4216fa1e20483f928e5 /ext/simplexml/simplexml.c
parenta1c33af793c2fc8db0712d88ca291054c6d8f39d (diff)
downloadphp-git-0936bfa42ccc94def35aae5e22cae3da00294782.tar.gz
renamed registerNamespace() to registerXPathNamespace()
Diffstat (limited to 'ext/simplexml/simplexml.c')
-rw-r--r--ext/simplexml/simplexml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c
index c5ec233a23..1c78b054bf 100644
--- a/ext/simplexml/simplexml.c
+++ b/ext/simplexml/simplexml.c
@@ -844,7 +844,7 @@ SXE_METHOD(xpath)
xmlXPathFreeObject(retval);
}
-SXE_METHOD(registerNamespace)
+SXE_METHOD(registerXPathNamespace)
{
php_sxe_object *sxe;
zval *id;
@@ -1627,7 +1627,7 @@ static zend_function_entry sxe_functions[] = {
SXE_ME(__construct, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) /* must be called */
SXE_ME(asXML, NULL, ZEND_ACC_PUBLIC)
SXE_ME(xpath, NULL, ZEND_ACC_PUBLIC)
- SXE_ME(registerNamespace, NULL, ZEND_ACC_PUBLIC)
+ SXE_ME(registerXPathNamespace, NULL, ZEND_ACC_PUBLIC)
SXE_ME(attributes, NULL, ZEND_ACC_PUBLIC)
SXE_ME(children, NULL, ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}