From ddba1d97c70a8df07d17be4c83cab459715d8339 Mon Sep 17 00:00:00 2001 From: David Rothstein Date: Mon, 30 Dec 2013 16:29:34 -0500 Subject: [PATCH] Issue #1201088 by crazyrohila, pjcdawkins, eiriksm, Zgear, barbi | alxsvdr: Drupal_environment_initialize() passes wrong ini_set parameter. --- includes/bootstrap.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 5511d7c5d599..a757f4524ece 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');