diff options
author | Zeev Suraski <zeev@php.net> | 2000-09-05 19:06:29 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-09-05 19:06:29 +0000 |
commit | eb3214490287d4f8fd87a0e709f24e56eb97ae12 (patch) | |
tree | db7976f0421b040f53f5ae3ea37b9179327cb563 /php.ini-recommended | |
parent | 3c45b97804205dfe299814d6375d2022ca800d7a (diff) | |
download | php-git-eb3214490287d4f8fd87a0e709f24e56eb97ae12.tar.gz |
- Remove track_vars - it is now always on
- Make the various $HTTP_*_VARS[] arrays be defined always,
even if they're empty
- Fix Win32 build and warnings
Diffstat (limited to 'php.ini-recommended')
-rw-r--r-- | php.ini-recommended | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/php.ini-recommended b/php.ini-recommended index 425f4f191a..901f300dd6 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -182,9 +182,8 @@ register_globals = Off ; Whether or not to register the EGPCS variables as glob register_argc_argv = Off ; This directive tells PHP whether to declare the argv&argc ; variables (that would contain the GET information). If you ; don't use these variables, you should turn it off for - ; increased performance -track_vars = On ; enable the $HTTP_*_VARS[] arrays, where * is one of - ; ENV, POST, GET, COOKIE or SERVER. + ; increased performance (you should try not to use it anyway, + ; for less likelihood of security bugs in your code). gpc_order = "GPC" ; This directive is deprecated. Use variables_order instead. ; Magic quotes |