mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-04 17:44:38 +09:00
Fix missing array key in session
This commit is contained in:
parent
4af7354bf0
commit
a1ce3ccaf2
1 changed files with 4 additions and 0 deletions
|
|
@ -430,6 +430,10 @@ class Session
|
||||||
|
|
||||||
// Update the domain initialization timestamp.
|
// Update the domain initialization timestamp.
|
||||||
$_SESSION['RHYMIX']['domains'][$alt_domain]['started'] = time();
|
$_SESSION['RHYMIX']['domains'][$alt_domain]['started'] = time();
|
||||||
|
if (!isset($_SESSION['RHYMIX']['domains'][$alt_domain]['trusted']))
|
||||||
|
{
|
||||||
|
$_SESSION['RHYMIX']['domains'][$alt_domain]['trusted'] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Refresh the main session cookie and the autologin key.
|
// Refresh the main session cookie and the autologin key.
|
||||||
if ($refresh_cookie)
|
if ($refresh_cookie)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue