summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2013-12-30 16:29:34 -0500
committerDavid Rothstein <drothstein@gmail.com>2013-12-30 16:29:34 -0500
commitddba1d97c70a8df07d17be4c83cab459715d8339 (patch)
tree1709a0b3c5d25edbd7e2c456bd723361dd2cd51a /includes/bootstrap.inc
parent25875f96defc2f138470895ed9d56d17c05f58cf (diff)
downloadbrdo-ddba1d97c70a8df07d17be4c83cab459715d8339.tar.gz
brdo-ddba1d97c70a8df07d17be4c83cab459715d8339.tar.bz2
Issue #1201088 by crazyrohila, pjcdawkins, eiriksm, Zgear, barbi | alxsvdr: Drupal_environment_initialize() passes wrong ini_set parameter.
Diffstat (limited to 'includes/bootstrap.inc')
-rw-r--r--includes/bootstrap.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 5511d7c5d..a757f4524 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -683,7 +683,8 @@ function drupal_environment_initialize() {
ini_set('session.use_only_cookies', '1');
ini_set('session.use_trans_sid', '0');
// Don't send HTTP headers using PHP's session handler.
- ini_set('session.cache_limiter', 'none');
+ // An empty string is used here to disable the cache limiter.
+ ini_set('session.cache_limiter', '');
// Use httponly session cookies.
ini_set('session.cookie_httponly', '1');