summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2002-08-23 09:14:42 +0000
committerZeev Suraski <zeev@php.net>2002-08-23 09:14:42 +0000
commit416fcc197e66108d7c0ac7e2e4eacce19506359c (patch)
tree7ec57f694a0c2711d43624be113d323344a519b1
parentc17c4e63444984f6bfad340f324e085cbd0f3644 (diff)
downloadphp-git-416fcc197e66108d7c0ac7e2e4eacce19506359c.tar.gz
Avoid changing behavior in a bug-fix release
-rw-r--r--ext/session/session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c
index 3475b67fe9..9e0993dbf6 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -154,7 +154,7 @@ PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("session.entropy_length", "0", PHP_INI_ALL, OnUpdateInt, entropy_length, php_ps_globals, ps_globals)
STD_PHP_INI_ENTRY("session.cache_limiter", "nocache", PHP_INI_ALL, OnUpdateString, cache_limiter, php_ps_globals, ps_globals)
STD_PHP_INI_ENTRY("session.cache_expire", "180", PHP_INI_ALL, OnUpdateInt, cache_expire, php_ps_globals, ps_globals)
- STD_PHP_INI_ENTRY("session.use_trans_sid", "0", PHP_INI_ALL, OnUpdateBool, use_trans_sid, php_ps_globals, ps_globals)
+ STD_PHP_INI_ENTRY("session.use_trans_sid", "1", PHP_INI_ALL, OnUpdateBool, use_trans_sid, php_ps_globals, ps_globals)
/* Commented out until future discussion */
/* PHP_INI_ENTRY("session.encode_sources", "globals,track", PHP_INI_ALL, NULL) */
PHP_INI_END()