summaryrefslogtreecommitdiff
path: root/ext/ovrimos
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-30 05:36:18 +0000
committerZeev Suraski <zeev@php.net>2001-07-30 05:36:18 +0000
commitb0224d51daa79a1b72df0e4a8213e425b5582102 (patch)
tree730404b9029ae7e7ea335db411407d54f16acccb /ext/ovrimos
parentb52554951fe50acb55e5607987994b69032198a3 (diff)
downloadphp-git-b0224d51daa79a1b72df0e4a8213e425b5582102.tar.gz
Zend compatibility patch
Diffstat (limited to 'ext/ovrimos')
-rw-r--r--ext/ovrimos/ovrimos.c8
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)