Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1 |
|
#
74eed615 |
| 01-Dec-2003 |
Derick Rethans |
- Fix the default SAPI filter too; all weird problems should be gone again.
|
#
750b0338 |
| 29-Nov-2003 |
Derick Rethans |
- Fix sapi_input_filter patch. Returning 1 from the filter handler should make PHP register the variable, returning 0 shouldn't. The new length of the variables being filtered is now retu
- Fix sapi_input_filter patch. Returning 1 from the filter handler should make PHP register the variable, returning 0 shouldn't. The new length of the variables being filtered is now returned in the new_val_len argument of the function.
show more ...
|
#
370dfd39 |
| 26-Nov-2003 |
Derick Rethans |
- Prevent registration of the variable when a zero-length is returned from the sapi_input_filter.
|
Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3 |
|
#
3c84c0ee |
| 14-Oct-2003 |
Ilia Alshanetsky |
Fixed bug #25836 (last key of multi-dimensional array passed via GPC not being escaped when magic_quotes_gpc is on).
|
#
dd7bdcf4 |
| 07-Oct-2003 |
Stanislav Malyshev |
Fix $_SERVER['argv'] and $_SERVER['argc']
|
Revision tags: BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2 |
|
#
b3920d50 |
| 01-Oct-2003 |
Andrei Zmievski |
Made the $argc and $argv always available as globals in CLI, and not as $_SERVER vars which depended on variables_order anyway. No more silliness.
|
Revision tags: php-4.3.4RC1, RELEASE_0_7, php-4.3.3, php-4.3.3RC4, RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO |
|
#
de7f7658 |
| 31-Jul-2003 |
Ilia Alshanetsky |
Only register server variables when needed.
|
#
0eb76eb2 |
| 31-Jul-2003 |
Ilia Alshanetsky |
Fixed bug #24883 (variables created through register_globals, ignore gpc_order and variables_order). Prevent multiple registration of ENV & SERVER variables when more then one is specifie
Fixed bug #24883 (variables created through register_globals, ignore gpc_order and variables_order). Prevent multiple registration of ENV & SERVER variables when more then one is specified. Prevent multiple addition of GET/POST/COOKIE variables when building _REQUEST.
show more ...
|
Revision tags: php-4.3.3RC2 |
|
#
0a49c033 |
| 22-Jul-2003 |
Zeev Suraski |
- Use the new infrastructure of zend_symtable_*() (fixes bug #24565) - Fix bogus use of get_current_key()
|
#
023c8a7d |
| 21-Jul-2003 |
Zeev Suraski |
Fix register_globals
|
Revision tags: php-5.0.0b1, php-4.3.3RC1 |
|
#
e4014204 |
| 16-Jun-2003 |
Ilia Alshanetsky |
Fixed bug #24208
|
#
93a52384 |
| 14-Jun-2003 |
Ilia Alshanetsky |
Fixed bug #24007 (Problem with register_globals & arrays)
|
#
f68c7ff2 |
| 10-Jun-2003 |
James Cox |
updating license information in the headers.
|
#
ce40bc90 |
| 08-Jun-2003 |
Zeev Suraski |
Make $_FILES auto global (bug #23680)
|
Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT, php-4.3.2RC3, RELEASE_0_9b, SPL_ALPHA, php-4.3.2RC2, RELEASE_0_6, RELEASE_0_5, init |
|
#
0f3a0dfa |
| 30-Mar-2003 |
Shane Caraveo |
_SERVER also should not be quoted by magic_quotes_GPC also remove an empty if statement
|
#
e1eb238c |
| 28-Mar-2003 |
Moriyoshi Koizumi |
On 64bit platforms, pointers are 64bit long..
|
#
961ad8e2 |
| 27-Mar-2003 |
Moriyoshi Koizumi |
Improved php_import_environment_variables: avoid emalloc()ing in most cases
|
#
5ca07877 |
| 25-Mar-2003 |
Sebastian Bergmann |
Eliminate some TSRMLS_FETCH() calls. Tested with Win32 build of SAPI/CGI and SAPI/CLI on Win32.
|
#
456b6cbe |
| 23-Mar-2003 |
Shane Caraveo |
The environment should *never* be magic quoted.
|
Revision tags: php-4.3.2RC1 |
|
#
66c05f70 |
| 03-Mar-2003 |
Ilia Alshanetsky |
Fixed compiler warnings.
|
#
1f63fba1 |
| 02-Mar-2003 |
Zeev Suraski |
Fix old variable names
|
#
622da332 |
| 02-Mar-2003 |
Zeev Suraski |
- Optimize $_REQUEST - Fix phpinfo()
|
#
4e55747a |
| 02-Mar-2003 |
Zeev Suraski |
Add JIT initialization for _SERVER and _ENV (it's less important for the others, even though it should be fairly easy now too)
|
#
d08a0e99 |
| 20-Feb-2003 |
Rasmus Lerdorf |
An input filter might not simply strip stuff, it might also turn things into entities or use some other mechanism which causes the filtered data to be longer than the original data. Ergo, pa
An input filter might not simply strip stuff, it might also turn things into entities or use some other mechanism which causes the filtered data to be longer than the original data. Ergo, pass in the address of the buffer instead so the filter is free to reallocate it.
show more ...
|
#
7429c2dc |
| 19-Feb-2003 |
Rasmus Lerdorf |
Input Filter support. See README.input_filter for details. @- Input Filter support added. See README.input_filter. (Rasmus)
|