Fix CI

This commit is contained in:
Eric Espie
2021-09-08 10:20:16 +02:00
parent 40b095e407
commit 738411005b

View File

@@ -49,7 +49,7 @@ class Session
*/
public static function Set($key, $value)
{
if (self::Get($key) == $value) {
if (!isset($_SESSION) || self::Get($key) == $value) {
return;
}
$aSession = $_SESSION;