diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-12-26 11:00:23 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-12-26 11:00:23 +0000 |
commit | e23a87d1f9233ed4145975fef74f85429de43513 (patch) | |
tree | 188c9d575b2f70435f411392188c2c00bcc2c645 | |
parent | 1657694f28015833f2bf3a087d48c6b55078d8d3 (diff) | |
download | brdo-e23a87d1f9233ed4145975fef74f85429de43513.tar.gz brdo-e23a87d1f9233ed4145975fef74f85429de43513.tar.bz2 |
- Patch #303154 by John Morahan: fixed typo that slipped in.
-rw-r--r-- | includes/bootstrap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index d94079191..4af5bc7da 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -406,7 +406,7 @@ function drupal_initialize_variables() { // Use session cookies, not transparent sessions that puts the session id in // the query string. ini_set('session.use_only_cookies', '1'); - ini_set('session.use_trans_sid', '1'); + ini_set('session.use_trans_sid', '0'); // Don't send HTTP headers using PHP's session handler. ini_set('session.cache_limiter', 'none'); } |