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
|
||||
$ts = new TSInstance();
|
||||
$_SESSION['_TS3'] = serialize($ts);
|
||||
$container['ts'] = function () use ($ts) {
|
||||
return $ts;
|
||||
$container['ts'] = function () {
|
||||
return new TSInstance();
|
||||
};
|
||||
|
||||
// auth
|
||||
|
|
Reference in a new issue