Skip to content
Snippets Groups Projects

Resolve #3511586 "Session name suffix"

Open Peter Philipp requested to merge issue/drupal-3511586:3511586-session-name-suffix into 11.x
2 files
+ 49
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -95,7 +95,7 @@ protected function getUnprefixedName(Request $request) {
}
elseif (isset($this->options['cookie_domain'])) {
// If the user specifies the cookie domain, also use it for session name.
$session_name = $this->options['cookie_domain'];
$session_name = $this->options['cookie_domain'] . $this->options['name_suffix'];
}
else {
// Otherwise use $base_url as session name, without the protocol
Loading