summaryrefslogtreecommitdiff
path: root/main/php_variables.c
Commit message (Collapse)AuthorAgeFilesLines
...
* | fix UMR in php_register_variable_ex, reported by Stefan EsserStanislav Malyshev2012-02-011-0/+3
| |
* | Changed: restoring REQUEST_TIME as a long, introducing REQUEST_TIME_FLOAT ↵Patrick Allaert2012-01-061-4/+7
| | | | | | | | instead as discussed on the ML
* | - Year++Felipe Pena2012-01-011-1/+1
| |
* | Change fatal error into warning and ignore arguments over limitDmitry Stogov2011-12-221-8/+14
| |
* | Added max_input_vars directive to prevent attacks based on hash collisionsDmitry Stogov2011-12-141-0/+6
| |
* | Fixed ZE specific compile warnings (Bug #55629)Dmitry Stogov2011-09-131-10/+10
| |
* | - wsPierre Joye2011-08-231-3/+3
| |
* | - remove magic quotes support, functions are kept (see the NEWS entry for ↵Pierre Joye2011-07-221-24/+3
|/ | | | the details) for BC reasons but do not allow to set enable MQ
* - Year++Felipe Pena2011-01-011-1/+1
|
* - CleanupJani Taskinen2010-11-171-8/+8
|
* Updated _SERVER['REQUEST_TIME'] to include microsecond precision.Ilia Alshanetsky2010-11-061-2/+2
|
* Use stack instead of heapDmitry Stogov2010-08-261-11/+14
|
* - use interned strings for auto globalsDmitry Stogov2010-07-081-88/+96
| | | | | - $GLOBALS became a JIT autoglobal, so it's initialized only if used (this may affect opcode caches)
* Removed register_globalsKalle Sommer Nielsen2010-04-211-32/+8
|
* Removed register_long_arrays ini option (and $HTTP_SESSION_VARS from ↵Kalle Sommer Nielsen2010-04-151-23/+7
| | | | ext/session)
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* WSAntony Dovgal2008-08-301-3/+3
|
* Oops, fix the assert.Rasmus Lerdorf2008-08-301-1/+1
|
* Fix for bugs 13961, 39927 and 45947Rasmus Lerdorf2008-08-301-1/+8
|
* Lazy EG(active_symbol_table) initializationDmitry Stogov2008-04-291-0/+3
|
* [DOC] add request_order INI variable to control $_REQUEST contentStanislav Malyshev2008-03-121-1/+7
| | | | | | # if not set (default), variables_order still is used # request_order accepts G,P and C
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-14/+14
|
* fix a few compiler warnings (mostly use of unitialized values)Nuno Lopes2007-09-291-1/+2
|
* MFHAntony Dovgal2007-07-181-0/+2
|
* MFH:- Improved the error message for exceeding max_input_nesting_level.foobar2007-06-031-1/+1
|
* Improved fix for MOPB-02-2007Ilia Alshanetsky2007-06-031-3/+17
|
* Fixed bug #41093 (magic_quotes_gpc ignores first arrays keys).Ilia Alshanetsky2007-04-171-2/+1
|
* MFH: fix compile warningAntony Dovgal2007-03-281-1/+1
|
* fix variable nameStanislav Malyshev2007-03-021-1/+1
|
* limit nesting level of input variablesStanislav Malyshev2007-03-021-0/+6
|
* Fixed bug #39450 (getenv() fills other super-globals).Ilia Alshanetsky2007-01-201-11/+3
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Strip leading spaces from cookie names, that can come from multi-cookieIlia Alshanetsky2006-12-091-0/+12
| | | | | headers where ; can be followed by any number of spaces.
* Fixed bug #38236 (Binary data gets corrupted on multipart/formdata POST).Ilia Alshanetsky2006-07-271-10/+16
|
* Fixed bug #37276 (problems witch $_POST array)Dmitry Stogov2006-05-031-1/+1
|
* Fixed memory leaksDmitry Stogov2006-04-181-6/+4
|
* OptimizationDmitry Stogov2006-04-071-53/+47
|
* Fixed register_argc_argv behavior. Now it behave in the same way as before ↵Dmitry Stogov2006-03-201-13/+18
| | | | in all combinations with register_globals, register_long_arrays, variables_order and auto_globals_jit.
* Allowed 'auto_globals_jit' work together with 'register_argc_argv'Dmitry Stogov2006-03-171-3/+14
|
* Fixed bug #36205 (Memory leaks on duplicate cookies)Dmitry Stogov2006-02-131-0/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* MFH: Fixed possible GLOBALS variable override when register_globals are ON.Ilia Alshanetsky2005-09-281-0/+7
| | | | | | MFH: Fixed possible register_globals toggle via parse_str(). MFH: Fixed negative offset handling in substr_compare() function.
* MFH: Fixed bug #34331 (php crashes when variables_order is empty).Ilia Alshanetsky2005-09-011-2/+2
|
* Minor consistency cleanupRasmus Lerdorf2005-08-101-5/+4
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Fixed bug #33958 (duplicate cookies and magic_quotes=off may cause a crash)Ilia Alshanetsky2005-08-021-1/+3
|
* Fixed bug #33904 (input array keys being escaped when magic quotes is off).Ilia Alshanetsky2005-07-291-2/+10
|
* I could have sworn I committed this a while ago. Just a tiny NULL safetyRasmus Lerdorf2005-07-251-1/+1
| | | | | check here.