diff options
| author | Dmitry Stogov <dmitry@php.net> | 2006-02-13 10:23:59 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2006-02-13 10:23:59 +0000 |
| commit | 09ca61c12509bcfcf7e805064c7fbd7d97f7c4c8 (patch) | |
| tree | 69d8b7f2d5be36677f42f21138bc8deaa95b7526 /ext/dom/namednodemap.c | |
| parent | 5a4b6845dc87e391d37e76391b327fba06db6aaa (diff) | |
| download | php-git-09ca61c12509bcfcf7e805064c7fbd7d97f7c4c8.tar.gz | |
Made server wide switch for unicode on/off (according to PDM).
Diffstat (limited to 'ext/dom/namednodemap.c')
| -rw-r--r-- | ext/dom/namednodemap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/dom/namednodemap.c b/ext/dom/namednodemap.c index 76fcda8a7a..53707d02fb 100644 --- a/ext/dom/namednodemap.c +++ b/ext/dom/namednodemap.c @@ -104,7 +104,7 @@ PHP_FUNCTION(dom_namednodemap_get_named_item) xmlNodePtr nodep; xmlNotation *notep = NULL; - if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, U_CLASS_ENTRY(dom_namednodemap_class_entry), &named, &namedlen) == FAILURE) { + if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_namednodemap_class_entry, &named, &namedlen) == FAILURE) { return; } @@ -176,7 +176,7 @@ PHP_FUNCTION(dom_namednodemap_item) xmlNodePtr nodep, curnode; int count; - if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, U_CLASS_ENTRY(dom_namednodemap_class_entry), &index) == FAILURE) { + if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, dom_namednodemap_class_entry, &index) == FAILURE) { return; } if (index >= 0) { @@ -232,7 +232,7 @@ PHP_FUNCTION(dom_namednodemap_get_named_item_ns) xmlNodePtr nodep; xmlNotation *notep = NULL; - if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os!s", &id, U_CLASS_ENTRY(dom_namednodemap_class_entry), &uri, &urilen, &named, &namedlen) == FAILURE) { + if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os!s", &id, dom_namednodemap_class_entry, &uri, &urilen, &named, &namedlen) == FAILURE) { return; } |
