mirror of
https://github.com/e107inc/e107.git
synced 2025-07-30 19:30:25 +02:00
Input filter fixes.
This commit is contained in:
@@ -147,7 +147,7 @@ class e_session
|
||||
'path' => '',
|
||||
'domain' => '',
|
||||
'secure' => false,
|
||||
'httponly' => false,
|
||||
'httponly' => true,
|
||||
);
|
||||
|
||||
/**
|
||||
@@ -197,7 +197,8 @@ class e_session
|
||||
);
|
||||
|
||||
$options = array(
|
||||
'httponly' => (e_SECURITY_LEVEL >= self::SECURITY_LEVEL_PARANOID),
|
||||
// 'httponly' => (e_SECURITY_LEVEL >= self::SECURITY_LEVEL_PARANOID),
|
||||
'httponly' => true,
|
||||
);
|
||||
|
||||
if(!defined('E107_INSTALL'))
|
||||
@@ -226,7 +227,7 @@ class e_session
|
||||
$this->setConfig($config)
|
||||
->setOptions($options);
|
||||
}
|
||||
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user