Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixed typo in CVS id | foobar | 2001-04-06 | 1 | -1/+1 |
| | |||||
* | Added new configuration directives: | foobar | 2001-04-04 | 1 | -2/+16 |
| | | | | | arg_separator.input and arg_separator.output | ||||
* | Cookies use ; as argument separator. | foobar | 2001-04-04 | 1 | -4/+5 |
| | | | | | # And also the first step for the possible configure option | ||||
* | Fix the arg_separator behaviour. Only & or ; is allowed as separators so no ↵ | foobar | 2001-03-27 | 1 | -13/+2 |
| | | | | need to use the ini setting here. | ||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | Fix #7987: POST/GET: string with \0(%00) values not parsed correctly | Stanislav Malyshev | 2000-12-12 | 1 | -8/+15 |
| | |||||
* | @- In CGI mode, $HTTP_SERVER_VARS now includes all of the environment variables | Zeev Suraski | 2000-11-07 | 1 | -7/+1 |
| | | | | | @ as well (Zeev) | ||||
* | Const'ify part of sapi_request_info. | Sascha Schumann | 2000-11-02 | 1 | -6/+7 |
| | | | | | | query_string, post_data, path_translated, request_uri, auth_user, auth_password and argv0 are modified, so they cannot become const. | ||||
* | Add additional parameter to parse_str for saving result (thanks to | Stanislav Malyshev | 2000-09-11 | 1 | -2/+2 |
| | | | | | | John Bafford <dshadow@zort.net>) @ Added second parameter for parse_str to save result (John Bafford) | ||||
* | - Remove track_vars - it is now always on | Zeev Suraski | 2000-09-05 | 1 | -25/+19 |
| | | | | | | | - Make the various $HTTP_*_VARS[] arrays be defined always, even if they're empty - Fix Win32 build and warnings | ||||
* | Cleaning up some mess | Sascha Schumann | 2000-08-21 | 1 | -0/+1 |
| | |||||
* | Update the license with the new clause 6 | Zeev Suraski | 2000-05-18 | 1 | -2/+2 |
| | |||||
* | Change reentrancy API to always use the php prefix. | Sascha Schumann | 2000-05-04 | 1 | -7/+7 |
| | | | | | | Check for the declaration of reentrant functions, so that we can use them in non-ZTS mode on all platforms. | ||||
* | - Nuke hash_*_ptr() functions | Andi Gutmans | 2000-03-24 | 1 | -2/+2 |
| | |||||
* | @- Switched back to the old $HTTP_*_VARS[] behavior - $HTTP_GET_VARS["foo"] | Zeev Suraski | 2000-02-28 | 1 | -1/+0 |
| | | | | | | @ and $foo are no longer references to each other, but separate variables @ like they were prior to PHP 4.0 Beta 4 (Zeev) | ||||
* | @- The various $HTTP_*_VARS[] are now protected, and cannot be manipulated by | Zeev Suraski | 2000-02-26 | 1 | -14/+4 |
| | | | | | | @ user input (Zeev) This patch is untested! I'll only have time to test it thoroughly in a couple of hours... | ||||
* | @- Fixed crash when magic_quotes were switched off. (Thies) | Thies C. Arntzen | 2000-02-21 | 1 | -1/+1 |
| | |||||
* | Get the license right... (this won't make it to RC1 of B4) | Zeev Suraski | 2000-02-19 | 1 | -2/+2 |
| | |||||
* | Worked on beautifying rfc1867.c a bit | Zeev Suraski | 2000-02-19 | 1 | -13/+33 |
| | | | | | | @- Introduced $HTTP_POST_FILES[], that contains information about files uploaded @ through HTTP upload (Zeev) | ||||
* | Make POST handling the way it should be. RFC1867, and any future POST ↵ | Zeev Suraski | 2000-02-17 | 1 | -52/+50 |
| | | | | | | | | | | 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) | ||||
* | @- Fixed RFC1867 file upload under Windows (Zeev) | Zeev Suraski | 2000-02-15 | 1 | -1/+12 |
| | | | | | Fixed a memory leak | ||||
* | - Improve startup speed a bit by using the hash_*_ptr() functions | Andi Gutmans | 2000-02-13 | 1 | -6/+6 |
| | |||||
* | - Change the argument order of php_register_variable() to something more | Zeev Suraski | 2000-01-29 | 1 | -3/+3 |
| | | | | | | intuitive. - Make the authentication variables be a part of the HTTP_SERVER_VARS[] array | ||||
* | - A few fixes | Zeev Suraski | 2000-01-28 | 1 | -1/+1 |
| | | | | | - Added register_argv_argc directive to allow disabling of argv/argc | ||||
* | Tried to centralize global variable registration as much as possible: | Zeev Suraski | 2000-01-28 | 1 | -0/+317 |
- Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly to $HTTP_GET_VARS[], contain environment and server variables. Setting register_globals to Off will now also prevent registration of the environment and server variables into the global scope (Zeev) - Renamed gpc_globals to register_globals (Zeev) - Introduced variables_order that deprecates gpc_order, and allows control over the server and environment variables, in addition to GET/POST/Cookies (Zeev) |