diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-08-12 11:29:33 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-08-12 11:29:33 +0000 |
commit | 21c1109e0c426ed472500c58ac5236001a7277a5 (patch) | |
tree | 8d9a1400ac749060f8a9434d8399c9988cf93a1a /ext/dom/nodelist.c | |
parent | 6b98cc4ef56f6b8aecbe8de60acb6ebd5f6eca98 (diff) | |
download | php-git-21c1109e0c426ed472500c58ac5236001a7277a5.tar.gz |
Unicode support
Diffstat (limited to 'ext/dom/nodelist.c')
-rw-r--r-- | ext/dom/nodelist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/nodelist.c b/ext/dom/nodelist.c index 52f6b0a44b..db4798b4bd 100644 --- a/ext/dom/nodelist.c +++ b/ext/dom/nodelist.c @@ -111,7 +111,7 @@ PHP_FUNCTION(dom_nodelist_item) HashTable *nodeht; pval **entry; - if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, dom_nodelist_class_entry, &index) == FAILURE) { + if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, U_CLASS_ENTRY(dom_nodelist_class_entry), &index) == FAILURE) { return; } |