- Fix the default SAPI filter too; all weird problems should be gone again.

This commit is contained in:
Derick Rethans 2003-12-01 19:25:07 +00:00
parent e05fbfa253
commit 74eed61504

View file

@ -223,7 +223,8 @@ SAPI_API SAPI_POST_HANDLER_FUNC(php_std_post_handler)
SAPI_API SAPI_INPUT_FILTER_FUNC(php_default_input_filter)
{
/* TODO: check .ini setting here and apply user-defined input filter */
return val_len;
*new_val_len = val_len;
return 1;
}
SAPI_API SAPI_TREAT_DATA_FUNC(php_default_treat_data)