release 1.3.13

This commit is contained in:
Newcomer1989
2020-11-22 20:57:53 +01:00
parent 3316504336
commit e474b3feb8
74 changed files with 10142 additions and 8876 deletions

File diff suppressed because one or more lines are too long

View File

@@ -2047,7 +2047,7 @@ class TeamSpeak3_Node_Server extends TeamSpeak3_Node_Abstract
*
* @deprecated
*/
public function tokenCreate($type = TeamSpeak3::TOKEN_SERVERGROUP, $id1, $id2 = 0, $description = null, $customset = null)
public function tokenCreate($type = TeamSpeak3::TOKEN_SERVERGROUP, $id1 = 0, $id2 = 0, $description = null, $customset = null)
{
return $this->privilegeKeyCreate($type, $id1, $id2, $description, $customset);
}
@@ -2062,7 +2062,7 @@ class TeamSpeak3_Node_Server extends TeamSpeak3_Node_Abstract
* @param string $customset
* @return TeamSpeak3_Helper_String
*/
public function privilegeKeyCreate($type = TeamSpeak3::TOKEN_SERVERGROUP, $id1, $id2 = 0, $description = null, $customset = null)
public function privilegeKeyCreate($type = TeamSpeak3::TOKEN_SERVERGROUP, $id1 = 0, $id2 = 0, $description = null, $customset = null)
{
$token = $this->execute("privilegekeyadd", array("tokentype" => $type, "tokenid1" => $id1, "tokenid2" => $id2, "tokendescription" => $description, "tokencustomset" => $customset))->toList();