diff options
Diffstat (limited to 'README.input_filter')
-rw-r--r-- | README.input_filter | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.input_filter b/README.input_filter index 69a69335f5..40366f6a95 100644 --- a/README.input_filter +++ b/README.input_filter @@ -93,7 +93,7 @@ PHP_MINFO_FUNCTION(my_input_filter) * (modified) variable. Returning 0 prevents PHP from registering the variable; * you can use this if your filter already registers the variable under a * different name, or if you just don't want the variable registered at all. */ -unsigned int my_sapi_input_filter(int arg, char *var, char **val, unsigned int val_len, unsigned int *new_val_len) +SAPI_INPUT_FILTER_FUNC(my_sapi_input_filter) { zval new_var; zval *array_ptr = NULL; |