Update groupassigner.php

This commit is contained in:
Robin 2018-04-04 22:41:02 +02:00 committed by GitHub
parent a47a07b093
commit 819480412f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 14 deletions

View File

@ -86,20 +86,6 @@ if(isset($_POST["absenden"])){
<?php
function getServerGroups() {
global $lang;
try {
$tsAdmin = getTeamspeakConnection("#no_query_clients");
} catch (TeamSpeak3_Exception $e) {
if ($e->getCode() == 1281) {
return '';
} else {
return '<div class="alert alert-danger"><p class="text-center">' . translate($lang["general"]["scripterror"], [$e->getCode(), $e->getMessage()]) . '</p></div>';
}
}
}
require_once __DIR__ . "/include/footer.php";