remove ts3 instance from session
This commit is contained in:
parent
0ffba9676b
commit
ba86c0b8c6
1 changed files with 2 additions and 4 deletions
|
@ -60,10 +60,8 @@ $container['logger'] = function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
// teamspeak
|
// teamspeak
|
||||||
$ts = new TSInstance();
|
$container['ts'] = function () {
|
||||||
$_SESSION['_TS3'] = serialize($ts);
|
return new TSInstance();
|
||||||
$container['ts'] = function () use ($ts) {
|
|
||||||
return $ts;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// auth
|
// auth
|
||||||
|
|
Reference in a new issue