diff options
author | Xinchen Hui <laruence@php.net> | 2014-08-16 16:44:02 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-08-16 16:44:02 +0800 |
commit | d790eceb01009489358c3781c94ebea3b3400f67 (patch) | |
tree | 5d3af24c19c66c8697b33c3ea67f0844d0ee201b /ext/mysqli/mysqli.c | |
parent | c8250fa3e36a0f8978484f0cf402e84df8048161 (diff) | |
download | php-git-d790eceb01009489358c3781c94ebea3b3400f67.tar.gz |
Fixed version id
Diffstat (limited to 'ext/mysqli/mysqli.c')
-rw-r--r-- | ext/mysqli/mysqli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index fb93095c42..02e6898f7f 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -585,7 +585,7 @@ PHP_MINIT_FUNCTION(mysqli) mysqli_object_handlers.write_property = mysqli_write_property; mysqli_object_handlers.get_property_ptr_ptr = std_hnd->get_property_ptr_ptr; mysqli_object_handlers.has_property = mysqli_object_has_property; -#if PHP_VERSION_ID >= 53000 +#if PHP_VERSION_ID >= 50300 mysqli_object_handlers.get_debug_info = mysqli_object_get_debug_info; #endif memcpy(&mysqli_object_driver_handlers, &mysqli_object_handlers, sizeof(zend_object_handlers)); |