diff options
author | Johannes Schlüter <johannes@php.net> | 2011-05-18 10:21:28 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2011-05-18 10:21:28 +0000 |
commit | 4b450a0f85b2dc69e4260f374fab96af64587f4d (patch) | |
tree | 8ee9427b042ac8a0a81ceee6d7101442efa88cdd | |
parent | 1e3b32c777829f61fa9a18278e0647e9112d96ea (diff) | |
download | php-git-4b450a0f85b2dc69e4260f374fab96af64587f4d.tar.gz |
- Keep the old arginfo for now
# This change we would E_RECOVERABLE instead of E_WARNING
# and needs some more review, as well fixing ~80 tests
-rw-r--r-- | ext/mysqli/mysqli_fe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli_fe.c b/ext/mysqli/mysqli_fe.c index bbc1ff3982..6d80c5507c 100644 --- a/ext/mysqli/mysqli_fe.c +++ b/ext/mysqli/mysqli_fe.c @@ -33,7 +33,7 @@ #include "mysqli_fe.h" #include "mysqli_priv.h" -#if PHP_VERSION_ID >= 50400 +#ifdef MYSQLI_USE_FULL_TYPED_ARGINFO_0 #define MYSQLI_ZEND_ARG_OBJ_INFO_LINK() ZEND_ARG_OBJ_INFO(0, link, mysqli, 0) #define MYSQLI_ZEND_ARG_OBJ_INFO_RESULT() ZEND_ARG_OBJ_INFO(0, result, mysqli_result, 0) #define MYSQLI_ZEND_ARG_OBJ_INFO_STMT() ZEND_ARG_OBJ_INFO(0, stmt, mysqli_stmt, 0) |