mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Always create user agent hash in session
This commit is contained in:
parent
e03d3df0fe
commit
7a1a3e593d
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class CakeSession {
|
|||
self::$time = time();
|
||||
|
||||
$checkAgent = Configure::read('Session.checkAgent');
|
||||
if (($checkAgent === true || $checkAgent === null) && env('HTTP_USER_AGENT')) {
|
||||
if (env('HTTP_USER_AGENT')) {
|
||||
self::$_userAgent = md5(env('HTTP_USER_AGENT') . Configure::read('Security.salt'));
|
||||
}
|
||||
self::_setPath($base);
|
||||
|
|
Loading…
Add table
Reference in a new issue