From 2a36ccbaa6e4c36822b938a2a6a77bd3f6c8f0cf Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Wed, 17 May 2006 00:07:05 +0000 Subject: [PATCH] - Proto fix/add --- ext/simplexml/simplexml.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index 68c6cbe184..66572b0632 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -1055,7 +1055,7 @@ static int sxe_objects_compare(zval *object1, zval *object2 TSRMLS_DC) /* {{{ */ } /* }}} */ -/* {{{ array SimpleXMLElement::xpath(string path) +/* {{{ proto array SimpleXMLElement::xpath(string path) Runs XPath query on the XML data */ SXE_METHOD(xpath) { @@ -1142,6 +1142,8 @@ SXE_METHOD(xpath) xmlXPathFreeObject(retval); } +/* {{{ proto bool SimpleXMLElement::registerXPathNamespace(string prefix, string ns) + Creates a prefix/ns context for the next XPath query */ SXE_METHOD(registerXPathNamespace) { php_sxe_object *sxe; -- 2.40.0