diff options
| author | Rasmus Lerdorf <rasmus@php.net> | 2003-02-19 19:41:09 +0000 |
|---|---|---|
| committer | Rasmus Lerdorf <rasmus@php.net> | 2003-02-19 19:41:09 +0000 |
| commit | 7429c2dc3f72ed9a6a41ccefc68595e76319cdae (patch) | |
| tree | 5a1cf40f32cb245cc33b043339464da15507462c /main/rfc1867.c | |
| parent | 0458bb5e2b31e571b83e6aa674073c28fb8c4fbf (diff) | |
| download | php-git-7429c2dc3f72ed9a6a41ccefc68595e76319cdae.tar.gz | |
Input Filter support. See README.input_filter for details.
@- Input Filter support added. See README.input_filter. (Rasmus)
Diffstat (limited to 'main/rfc1867.c')
| -rw-r--r-- | main/rfc1867.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/rfc1867.c b/main/rfc1867.c index 3c9b6d56e2..eea22ce6a8 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -805,6 +805,7 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) value = estrdup(""); } + sapi_module.input_filter(PARSE_POST, param, value, strlen(value) TSRMLS_CC); safe_php_register_variable(param, value, array_ptr, 0 TSRMLS_CC); if (!strcmp(param, "MAX_FILE_SIZE")) { max_file_size = atol(value); |
