diff options
author | Zeev Suraski <zeev@php.net> | 1999-09-16 23:18:15 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-09-16 23:18:15 +0000 |
commit | 98d95dd88eec996ad2608b357dd03bc7930b3fb4 (patch) | |
tree | 37e11a02653d9b857dc7659f84e2a809a5b017f7 /cgi_main.c | |
parent | 52e769d8835d06af547c7438282fd4c6fcd88583 (diff) | |
download | php-git-98d95dd88eec996ad2608b357dd03bc7930b3fb4.tar.gz |
- Added support for unknown POST content types (Zeev)
- Introduce the convert_to_*_ex() API in strlen()
Diffstat (limited to 'cgi_main.c')
-rw-r--r-- | cgi_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cgi_main.c b/cgi_main.c index 6056d4fd8d..4a165b80c5 100644 --- a/cgi_main.c +++ b/cgi_main.c @@ -143,7 +143,9 @@ static sapi_module_struct sapi_module = { sapi_cgi_send_header, /* send header handler */ sapi_cgi_read_post, /* read POST data */ - sapi_cgi_read_cookies /* read Cookies */ + sapi_cgi_read_cookies, /* read Cookies */ + + STANDARD_SAPI_MODULE_PROPERTIES }; |