summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli.c
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2004-03-21 18:28:38 +0000
committerStanislav Malyshev <stas@php.net>2004-03-21 18:28:38 +0000
commit5b0f6b1f34c0da29e93dd8200438037f11b21646 (patch)
tree963844e30bf5b16f3a676b9350bf1dfe28ef5094 /ext/mysqli/mysqli.c
parent7cf92e79edf94ed00bb400ef1018d32228db6e6c (diff)
downloadphp-git-5b0f6b1f34c0da29e93dd8200438037f11b21646.tar.gz
Update for new read_property API
Diffstat (limited to 'ext/mysqli/mysqli.c')
-rw-r--r--ext/mysqli/mysqli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c
index 8404618a3e..75d7f45444 100644
--- a/ext/mysqli/mysqli.c
+++ b/ext/mysqli/mysqli.c
@@ -160,7 +160,7 @@ static int mysqli_write_na(mysqli_object *obj, zval *newval TSRMLS_DC)
/* }}} */
/* {{{ mysqli_read_property */
-zval *mysqli_read_property(zval *object, zval *member, zend_bool silent TSRMLS_DC)
+zval *mysqli_read_property(zval *object, zval *member, int type TSRMLS_DC)
{
zval tmp_member;
zval *retval;
@@ -197,7 +197,7 @@ zval *mysqli_read_property(zval *object, zval *member, zend_bool silent TSRMLS_D
}
} else {
std_hnd = zend_get_std_object_handlers();
- retval = std_hnd->read_property(object, member, silent TSRMLS_CC);
+ retval = std_hnd->read_property(object, member, type TSRMLS_CC);
}
if (member == &tmp_member) {