diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-30 05:36:18 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-30 05:36:18 +0000 |
commit | b0224d51daa79a1b72df0e4a8213e425b5582102 (patch) | |
tree | 730404b9029ae7e7ea335db411407d54f16acccb /ext/ovrimos | |
parent | b52554951fe50acb55e5607987994b69032198a3 (diff) | |
download | php-git-b0224d51daa79a1b72df0e4a8213e425b5582102.tar.gz |
Zend compatibility patch
Diffstat (limited to 'ext/ovrimos')
-rw-r--r-- | ext/ovrimos/ovrimos.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ext/ovrimos/ovrimos.c b/ext/ovrimos/ovrimos.c index 63f8861007..6aeb07a002 100644 --- a/ext/ovrimos/ovrimos.c +++ b/ext/ovrimos/ovrimos.c @@ -699,12 +699,6 @@ PHP_FUNCTION(ovrimos_fetch_into) } } - if (!ParameterPassedByReference(ht, 2)) { /* 1-based?... */ - php_error(E_WARNING, - "Array not passed by reference in call to ovrimos_fetch_into()"); - RETURN_FALSE; - } - if (arr->type != IS_ARRAY) { if (array_init(arr) == FAILURE) { php_error(E_WARNING, @@ -1287,7 +1281,7 @@ function_entry ovrimos_functions[] = { PHP_FE(ovrimos_prepare, NULL) PHP_FE(ovrimos_execute, NULL) PHP_FE(ovrimos_fetch_row, NULL) - PHP_FE(ovrimos_fetch_into, NULL) + PHP_FE(ovrimos_fetch_into, second_arg_force_ref) PHP_FE(ovrimos_field_len, NULL) PHP_FE(ovrimos_field_name, NULL) PHP_FE(ovrimos_field_type, NULL) |