diff --git a/core/lib/Drupal/Core/DrupalKernel.php b/core/lib/Drupal/Core/DrupalKernel.php index ea36f613ba..8cb9bcd1bc 100644 --- a/core/lib/Drupal/Core/DrupalKernel.php +++ b/core/lib/Drupal/Core/DrupalKernel.php @@ -975,8 +975,8 @@ public static function bootEnvironment($app_root = NULL) { // The .htaccess file contains settings that cannot be changed at runtime. if (PHP_SAPI !== 'cli') { - // Use session cookies, not transparent sessions that puts the session id in - // the query string. + // Use session cookies, not transparent sessions that puts the session id + // in the query string. ini_set('session.use_cookies', '1'); ini_set('session.use_only_cookies', '1'); ini_set('session.use_trans_sid', '0');