summaryrefslogtreecommitdiff
path: root/ext/dom/php_dom.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-06-02 21:55:26 +0000
committerAntony Dovgal <tony2001@php.net>2006-06-02 21:55:26 +0000
commit0816690760bfc4bfaf30d127666ab4e40a1065e3 (patch)
tree113ef8e1008aa76938197173a74611b8803a8204 /ext/dom/php_dom.c
parentbe96a46e9675495a8bc2ce66f5b912152bf76084 (diff)
downloadphp-git-0816690760bfc4bfaf30d127666ab4e40a1065e3.tar.gz
fix error messages in Unicode mode
Diffstat (limited to 'ext/dom/php_dom.c')
-rw-r--r--ext/dom/php_dom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c
index fd9f40063f..6646da1392 100644
--- a/ext/dom/php_dom.c
+++ b/ext/dom/php_dom.c
@@ -307,7 +307,7 @@ zval *dom_read_property(zval *object, zval *member, int type TSRMLS_DC)
if (obj->prop_handler != NULL) {
ret = zend_u_hash_find(obj->prop_handler, Z_TYPE_P(member), Z_UNIVAL_P(member), Z_UNILEN_P(member)+1, (void **) &hnd);
} else if (instanceof_function(obj->std.ce, dom_node_class_entry TSRMLS_CC)) {
- php_error(E_WARNING, "Couldn't fetch %s. Node no longer exists", obj->std.ce->name);
+ php_error(E_WARNING, "Couldn't fetch %v. Node no longer exists", obj->std.ce->name);
}
if (ret == SUCCESS) {
ret = hnd->read_func(obj, &retval TSRMLS_CC);