diff options
author | Zeev Suraski <zeev@php.net> | 2000-02-17 20:23:59 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-02-17 20:23:59 +0000 |
commit | a6393de6f7211ec72c1cdffbc30078fe35ce87c3 (patch) | |
tree | c065f101d37a1b091657cd7f7f3418126e51f1a6 /main/rfc1867.h | |
parent | 8805f09d87b09e43cef2b33be93dfb004c4a18b1 (diff) | |
download | php-git-a6393de6f7211ec72c1cdffbc30078fe35ce87c3.tar.gz |
Make POST handling the way it should be. RFC1867, and any future POST handlers we might
have in the future now obey to the variables_order directive, and there's a real way modular
way to handle POST content.
This is all untested, BEFORE_SAPI_POST_PATCH_17_FEB_2000 tagged before submission
@- Made multipart/form-data content obey to the variables_order directive (Zeev)
Diffstat (limited to 'main/rfc1867.h')
-rw-r--r-- | main/rfc1867.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/rfc1867.h b/main/rfc1867.h index 97c1475e80..b50cf46549 100644 --- a/main/rfc1867.h +++ b/main/rfc1867.h @@ -6,6 +6,7 @@ #define MULTIPART_CONTENT_TYPE "multipart/form-data" SAPI_POST_READER_FUNC(rfc1867_post_reader); +SAPI_POST_HANDLER_FUNC(rfc1867_post_handler); #define FILE_UPLOAD_INPUT_BUFFER_SIZE 8192 |