summaryrefslogtreecommitdiff
path: root/main/php_variables.c
Commit message (Collapse)AuthorAgeFilesLines
* Bump yearXinchen Hui2015-01-151-1/+1
|
* Merge branch 'PHP-5.4' into PHP-5.5Anatol Belski2014-04-241-1/+1
|\ | | | | | | | | * PHP-5.4: fix dll export
| * fix dll exportAnatol Belski2014-04-241-1/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Bob Weinand2014-04-121-1/+1
|\ \ | |/
| * Made usage of php_hash_environment useful by updating instead of just adding ↵Bob Weinand2014-04-121-1/+1
| | | | | | | | argc
| * Bump yearXinchen Hui2014-01-031-1/+1
| |
* | Bump yearXinchen Hui2014-01-031-1/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Christopher Jones2013-08-141-1/+1
|\ \ | |/ | | | | | | | | | | | | * PHP-5.4: Reduce (some) compile noise of 'unused variable' and 'may be used uninitialized' warnings. Conflicts: ext/dba/libinifile/inifile.c
| * Reduce (some) compile noise of 'unused variable' and 'may be used ↵Christopher Jones2013-08-141-1/+1
| | | | | | | | uninitialized' warnings.
| * Happy New YearXinchen Hui2013-01-011-1/+1
| |
| * MFH: Fixed bug #61000 (Exceeding max nesting level doesn't delete numerical ↵Xinchen Hui2012-03-021-1/+1
| | | | | | | | vars)
| * Improved max_input_vars directive to check nested variablesDmitry Stogov2012-02-141-20/+15
| |
| * Fixed memory leaksDmitry Stogov2012-02-021-15/+15
| |
| * 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
* | Happy New YearXinchen Hui2013-01-011-1/+1
| |
* | Removed Logo GUIDs and replaced with Data URIs and div hidden with JSAndrew Faulds2012-07-141-17/+0
| | | | | | | | | | | | | | | | | | | | | | - removed php_logo_guid() - removed php_egg_logo_guid() - removed php_real_logo_guid() - removed zend_logo_guid() - removed logo GUID handling - removed logo GUIDs from source - added logo data URIs instead for phpinfo() - added credits to phpinfo() page, but hidden by default
* | Improved max_input_vars directive to check nested variablesDmitry Stogov2012-02-141-20/+15
| |
* | Fixed bug #61000 (Exceeding max nesting level doesn't delete numerical vars).Xinchen Hui2012-02-081-1/+1
| |
* | Fixed memory leaksDmitry Stogov2012-02-021-15/+15
| |
* | 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
|